| Thread | Last Post | Replies |
|
| Treeview Imagelist - Best practices for managing images? | 23 Sep 2005 03:32 GMT | 3 |
I'm going round and round on how to best handle images for a treeview control. These are all known at design time so there is no dynamic aspect. That said, I want to associate the image with my project so I can easily edit them.
|
| XmlSerializer.Deserialize and missing classes | 23 Sep 2005 03:00 GMT | 1 |
I've got a XML file that I deserialize into an object using XmlSerializer: <?xml version="1.0" encoding="utf-8"?> <factory
|
| Clear keyboard buffer | 23 Sep 2005 02:57 GMT | 5 |
I've got a very large C# forms app and now that its being used in bigger environments we're getting a steady stream of "why does it do this?" problems. The most nagging of which right now is that when a MessageBox.Show() is displayed, if the user hits enter or esc, those
|
| collectionbase derived class and XmlAttribute | 23 Sep 2005 02:20 GMT | 5 |
I've created a collection. public class MyCollection:CollectionBase { public int Version;
|
| C# Sample Application | 23 Sep 2005 02:02 GMT | 1 |
Does Microsoft have a C# Sample Application? I see a lot of code samples, but I can't find a whole sample application. Ideally, the sample application would connect to Northwind database, and the application would show common every day tasks, like Add, Edit and Delete
|
| Formating String Number Decimal places | 23 Sep 2005 00:20 GMT | 6 |
I am having trouble trying to format a number string to two decimal places if the number ends in a 0 It formats fine otherwise. For example if PrincRepay is 78.20 it will display it as 78.2
|
| Skip an item in a foreach | 22 Sep 2005 22:54 GMT | 2 |
How would I skip an item in a foreach loop without breaking out of the loop altogether? foreach(SearchResult resCol1 in resCol) {
|
| Calling Class | 22 Sep 2005 22:31 GMT | 7 |
I call a class in my windows service app and in that class I access a method that returns an OleDbReader. Now It does have records in the reader when I step through the method but when I return to calling class the OleDbReader dr is null.
|
| Best way to exit (newbie) | 22 Sep 2005 21:56 GMT | 10 |
I have some code Is the finish statement the best to use if method is of the type void private void btnSave_Click(object sender, System.EventArgs e) {
|
| Calculator like mouse events | 22 Sep 2005 21:52 GMT | 4 |
I have a controls similiar to the windows calculator. (Please press some buttons on your calculator to see what i am talking about) So when u hover over a button it will change the state (it changes to different image)
|
| LDAP path to server and a user group | 22 Sep 2005 21:40 GMT | 2 |
I am trying to create an LDAP connection. I have managed to connect to "LDAP://myServerName" I now want to connect further down the directory tree, to a particular user group.
|
| Windows service | 22 Sep 2005 21:38 GMT | 2 |
I want to detect Windows shutdown event in Windows service. How to do it? Thanks in advance KDV
|
| inaccessible type due to protection level | 22 Sep 2005 21:32 GMT | 1 |
New to C# programming. I'm trying to implement some simple security in my website. Basically a user cannot surf to secured aspx pages simply by accessing them directly through the address bar. If they have not logged in and created a
|
| C# Sample Application | 22 Sep 2005 21:20 GMT | 3 |
Does Microsoft have a C# Sample Application? I see a lot of code samples, but I can't find a whole sample application. Ideally, the sample application would connect to Northwind database, and the application would show common very day tasks, like Add, Edit and Delete
|
| Trapping when Workstation is locked | 22 Sep 2005 21:06 GMT | 2 |
I need to trap when a workstation is locked. I saw this article http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthn/securi ty/winlogon_notification_packages.asp, but i don't understand how to do an event handler of Winlogon Notification Events. Also I saw the ...
|