| Thread | Last Post | Replies |
|
| Write to DebugOutputString in Debugging Mode | 28 Nov 2005 22:36 GMT | 1 |
Hi NG, how can i write to the DebugOutputString while running my app in debugging mode? I want my app to write always to the DebugOutputString and never want
|
| Parsing percentage % to double | 28 Nov 2005 22:29 GMT | 1 |
I use this code, but I get exception: String num = "29%"; System.Globalization.NumberFormatInfo ni = new System.Globalization.NumberFormatInfo(); ni.PercentSymbol = "%";
|
| FAQ: VS 2003 and 2005 running together | 28 Nov 2005 21:56 GMT | 7 |
I am still waiting for my copy of VS 2005 that I ordered about 2 weeks ago. When I finally get VS 2005, I will want to continue to run my projects using 2003 and at the same time I want to make a copy of my currently projects and upgrade them to VS 2005 and .Net 2 to make sure ...
|
| Tables.CanRemove | 28 Nov 2005 21:53 GMT | 4 |
I'm doing this: if ((this.Tables.Contains(dt.TableName)) & (this.Tables.CanRemove(dt))) { this.Tables.Remove(dt);
|
| read user section from config file to drop down list | 28 Nov 2005 21:48 GMT | 1 |
Hello, in my web.config file I have <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings>
|
| Storing secret code for all users | 28 Nov 2005 21:37 GMT | 8 |
We want to add a secret code which is the expiration date and the number of uses of the trial software in storage. Saving this code in the Windows Registry is not a good choice, because the user may not have access right. Also adding it to IsolatedStorage is for one user and is ...
|
| Do I need Delegates? | 28 Nov 2005 20:58 GMT | 16 |
Folks, I am confused as to how to implement the following solution. I have a series of processing steps, each of which contains similar features (forms, etc). Therefore, I create a base class, Step, and subclass from that
|
| Connection: Keep-Alive vs Connection: Close | 28 Nov 2005 20:20 GMT | 1 |
With the sniffer ethereal I get a lot of Connections Keep Alive in some sites like google.com and that returns me the Content-Length in the HTTP response header. When the connection is Close I don't get the Content-Length but I get
|
| Help with WndProc | 28 Nov 2005 19:12 GMT | 2 |
Hello all; I'm trying to create a UI that's a little atypical. In the main form's Paint event handler, I draw an image on the form - this is what I want to by my "real" UI. I turned off the form border, and set the form's background
|
| System.Timers.Timer performance test ? | 28 Nov 2005 19:05 GMT | 1 |
I'm testing the performance of the System.Timers.Timer class. I created a small program that create 100 User objects. Each USer object create a MyTimer object. The constructor of the User class contains a name and a time to wait
|
| Can we use the exist connection string when create dataset | 28 Nov 2005 18:51 GMT | 1 |
I use vs2005. I wnat to create a dataset in design time. I have a connection string in web.config. At the first step of DataAdapter wizard, it prompt me to enter a new connection, At the last step, it prompt me to store the conneciton string in
|
| Making sure 2.0 doesn't have blocks | 28 Nov 2005 18:37 GMT | 9 |
I know 2.0 supports "anonymous methods" (or "closures"), but I don't see the ability to assign a block of code to a variable (I think they are simply "blocks" in Ruby). Am I correct? They seem logically to go hand in hand...
|
| Is there any Vector in C#??? | 28 Nov 2005 17:37 GMT | 1 |
Hi group I want to translate my program from C++ to C#, I used STL vector in my C++ program but I wonder what data type should I use when I want it to act like a STL vector, but I don't want to use System.Array class!!!!!
|
| Q: Translation of VB Code, total brain melt down... | 28 Nov 2005 17:34 GMT | 1 |
I have this line of code in VB that i am trying to get to C# But my mind is completley blank... New HookProc(AddressOf TheHookProc) How is that translated into Visual C#?
|
| Create a string of n pixel width... | 28 Nov 2005 17:05 GMT | 2 |
Since I have no control over a treeview's scroll bars (i'm drawing icons and text to the right of the treenodes) I've decided to just add some special text to the end of my tree node text which I will then strip out when it comes to drawing the treenode into the treeview...
|