| Thread | Last Post | Replies |
|
| Nullable value type idiosyncrasy | 14 Sep 2006 07:45 GMT | 3 |
I came across an idiosyncrasy about nullable value types. According to the documentation there are two valid syntax for nullable value types. One is using the Nullable<T> generic and the other using nullable type modifier T?. However, if you use the HasValue call without first ...
|
| Binding Data to a text box C# VS.2005 | 14 Sep 2006 07:33 GMT | 1 |
I've a simple form, in which I've included a datagrid and for testing purposes I'm using the Northwind DB. Basically in my datagrid I'm showing the whole employee table. I've managed to put a text box onto the form and I'm able to bind the employee's ID to that text box.
|
| Help: BeginInvoke problem | 14 Sep 2006 06:48 GMT | 1 |
In the form cs: form() { Thisfrm = this;
|
| How many? | 14 Sep 2006 06:43 GMT | 5 |
How many characters are on a standard console?
|
| System.IO alternative user credentials? Is it possible? | 14 Sep 2006 03:50 GMT | 3 |
I am trying to figure out how to pass set of credentials to System.IO Challenge is: App is running under one set of credentials, but via GUI user have a chance to enter another set. I would like to be able to use supplied credentials
|
| Flat Textbox | 13 Sep 2006 23:33 GMT | 8 |
I'm trying to create a textbox inheriting from the standard textbox. I would like to: 1. repaint the textbox border; 2. define a color for that border;
|
| GAC, PDB and the such | 13 Sep 2006 23:25 GMT | 1 |
I have be programing in C# for two months now. I am still a beginner and yet have learned alot. I have written windows services, web services, web sites and windows applications. Now could someone please take a minute and fully explain to me what GAC, Assemblies and PDB are?
|
| Cannot find a part of the path Error | 13 Sep 2006 23:16 GMT | 9 |
Hi All, I know there have been previous posts with this topic but the issue for most seems to be the security permissions on the shared drive. My scenario is as follows :
|
| best practices for generating debugging logs and grabbing exception info | 13 Sep 2006 22:04 GMT | 4 |
So, I have my little .Net 2.0 C# utilities out in the wild and occasionally they have bugs(!). Often the bugs are easy to troubleshoot remotely but occasionally I would like to write detailed trace info to a simple text file that I could use to further track down the bugs. ...
|
| fitness testing | 13 Sep 2006 21:55 GMT | 1 |
Can someone point me to the url for getting direction on how to help BA on creating fitness fixtures?? (I couldn't find the place where I can download fitness to install in my box to do some testing) Thanks.
|
| Junk data after Marshal.PtrToStructure | 13 Sep 2006 21:46 GMT | 1 |
I have a WIN32 DLL which pass some information to a .NET based application via the windows messages. When I try to convert this data in the managed code, I am getting junk data. Does any have any clue on whats wrong?. Here is the code snippet.
|
| All Users - Application Data - Folder creation permissions. | 13 Sep 2006 21:41 GMT | 1 |
I have an application that creates directories in ...\All Users\Application Data. When I create the directories I need to make sure all users can modify and add files to them. How do I set permissions on the directory so that when they are initially created, "Everyone" has full ...
|
| References vs Copies | 13 Sep 2006 20:57 GMT | 22 |
Consider the following line of code: Address addr = ei.Address; where ei is an instance of a class that has got a property of Address type.
|
| duplicate StringCollections and RegEx problem | 13 Sep 2006 20:54 GMT | 1 |
I have some question. 1. I have a filled StringCollection A. When I assign it to an StringCollection B and remove a value from B, because strings are only referenced, right? But now I need a copy of this StringCollection within
|
| Half a step away from Multiple Inheritance (a suggestion) | 13 Sep 2006 20:41 GMT | 1 |
Let's say you have three classes, ClassA, ClassB and ClassC. You'd like ClassC to descend from ClassA and ClassB (because, for instance, ClassA is a UserControl and Class C is all of your validation code). At the moment you can't do it - your code either has to be in a static
|