| Thread | Last Post | Replies |
|
| xsd:maxLength | 30 Sep 2005 22:21 GMT | 1 |
I understand I can write an XSD file like... <xs:attribute name = "value1" use="required"> <xs:simpleType> <xs:restriction base="xs:string">
|
| Is there a method to read files by date modified ? | 30 Sep 2005 22:06 GMT | 3 |
i have been using the getfiles method, but that retrieves only alphabetically. i'd like to be able to retrieve filenames in a directory by thier date modified. does .net have a method for this ?
|
| Custom collection design/style opinion requested | 30 Sep 2005 21:56 GMT | 1 |
VB.Net: I have create a custom collection to hold instances of my custom class. The collection has an Item property which is set as the default property. I can use code such as this to retrieve an item by index or key:
|
| Two services with similar names can't run at same time | 30 Sep 2005 20:23 GMT | 2 |
I developed a windows service, called x.exe Then I created a variant called x.c.exe I installed both on a target machine. If I start x.exe, then x.c.exe won't start.
|
| enabling\disabling a radiobutton | 30 Sep 2005 19:58 GMT | 6 |
I have several radio buttons for the user to choose from. I need to enable or disable a particular radio button, depending on a certain condition. How can I do this? Thanks, Leonard
|
| app.config for exe file | 30 Sep 2005 18:53 GMT | 2 |
I copied my app.config into the bin folder and tried to deploy both the .exe and app.config file so my user will be able to change values such as connectionstr settings. But I can't get the app.config to work unless I change the one inside the solution. How can I make the app ...
|
| Populating drop down list from AD | 30 Sep 2005 18:16 GMT | 4 |
string strLdap = "LDAP://OU=Sales,DC=Company,DC=com" DirectoryEntry objOU = new DirectoryEntry(strLdap); DirectorySearcher objUserSearcher = new DirectorySearcher(objOU); SearchResultCollection objResults;
|
| 'wrap text' in column header in a datagrid? | 30 Sep 2005 17:15 GMT | 2 |
I have a datagrid column header that is quite long, and I would like it to appear on 2 lines instead of 1. Is this possible? TIA.
|
| Auto update of programs. | 30 Sep 2005 16:45 GMT | 11 |
Has anybody had any experience writing an auto update program that will check the internet to see if there is a newer version of the code out there and download it? It doesn't seem that complicated but I just wanted to hear from people who
|
| TreeView... label width | 30 Sep 2005 14:04 GMT | 4 |
Using VS.NET 2003, VB: I have a TreeView object with lots of nodes. The treeview is docked on the left side of my main from in a splitter. I want to set the splitter's initial width to allow all the treeViews' nodes' labels to be visible.
|
| Tiers and Circular References | 30 Sep 2005 10:35 GMT | 1 |
I want middletier objects and data access objects in different namespaces. I want the middle tier object to get a reference to the data access object and pass itself as a parameter to the data access object's constructor, accordingly the constructor of the data access object must ...
|
| Problem to Create A new Project from VS.NET 2003 | 30 Sep 2005 10:28 GMT | 1 |
Anyone know what is wrong with my VS.NET?? Please Help! I have installed the VS.NET 2003 recently. When I try to create a new Web Application project (C# or VB), an Error message popup: "Visual Studio.NET has detected that the specified Web server is not running ASP.NET. You will ...
|
| Manually Add Row to Datagrid | 30 Sep 2005 10:23 GMT | 1 |
Is there a way to do this after you have bound it? I am just wanting to add another record that will be displayed.
|
| System.IO.Stream to string | 30 Sep 2005 06:12 GMT | 1 |
How do I convert a System.IO.Stream to a string variable. Regards Paul
|
| Validation and cancelling click events in WinForms | 30 Sep 2005 04:31 GMT | 6 |
Imagine a form with some fields and an OK buttons that saves the information. Each field has validation logic in the Validating event. If the input is not valid, the control's value is replaced with the last value it had before the user changed it. Pretty typical
|