| Thread | Last Post | Replies |
|
| Remembering of controls values. | 13 Sep 2005 22:17 GMT | 1 |
On www page I have control: <asp:TextBox ID="Login" runat="server"></asp:TextBox> In C# : protected void Page_UnLoad(object sender, EventArgs e)
|
| static in attributes | 13 Sep 2005 22:08 GMT | 2 |
In what condition attributes (class) might have static methods?
|
| problem with static member | 13 Sep 2005 22:00 GMT | 2 |
When compile I get this error: An object reference is required for the nonstatic field, method, or property 'ConsoleApplication1.Obj.env'. I must do a static member that return a Obj instance.
|
| Best way to define 1D array of double in C# and pass it to and from a C dll. | 13 Sep 2005 19:50 GMT | 1 |
What is the best way to pass an array of double from C# to a win32 dll written in C? The C code both reads and redefines elements of the array. Execution speed is also of concern. Is there anything better than:
|
| How to exit a For-Next in a nested Switch statement? | 13 Sep 2005 19:44 GMT | 12 |
Back to basics! My understanding is that the only way to exit a For-Next loop prematurely is with the 'break' keyword. How are you supposed to do that if you're inside a Switch statement? The break keyword will only come out of the switch, not
|
| webservices, return xml without .net injecting xml schema | 13 Sep 2005 19:42 GMT | 3 |
Hey all, I want to return an xml structure without .net trying to inject any of its xml schema? Can this be done? Here is the scenario:
|
| Best approach to closing threads when user closes the form? | 13 Sep 2005 19:13 GMT | 1 |
I am a small application that I am developing which will use a few threads. When the user closes the form the threads will remain present until I close them. The Main Form instantiates a couple of communications classes which contain the threads. So for this
|
| Rectangle.FromString() | 13 Sep 2005 19:08 GMT | 15 |
I'm still finding my way round C# and am not sure what is possible and not possible. Is there any way to do the equivalent of Rectangle r = new Rectangle(); r.FromString(anotherRectangle.ToString());
|
| Alert prior to session timeout? | 13 Sep 2005 18:58 GMT | 1 |
Users complete a document in a rich text box, typically 2,000 to 8,000 characters. Sometimes they turn away to do something else, and lose all work when the session times out. Can you suggest a way to pop up an alert to save their work, a few minutes
|
| Scanning a document to PDF | 13 Sep 2005 18:38 GMT | 2 |
I am doing a school project, where I would like to scan a document (something like library card) using a scanner and store the document in PDF file. I would like to do it, through a win form/c#. Is it possible? If so if there are any links you could point me to?
|
| VS And Crystal report | 13 Sep 2005 18:27 GMT | 1 |
Dear Friends I want to make deployement for windows application(.NET) that use crystal report what should i do to make the setup package
|
| How implement a string based enum | 13 Sep 2005 17:14 GMT | 2 |
I need to have something like (wich as written of course is not possible) public enum CountryType : String { USA = "US",
|
| where the ConfigurationSettings saved | 13 Sep 2005 16:26 GMT | 4 |
In .Net,Through System.Configuration.ConfigurationSettings Get Application's Settings I can't find the Configuration Value from Register Where the ConfigurationSettings saved?
|
| USB-DEVICE found/lost | 13 Sep 2005 16:10 GMT | 1 |
Hi NG, i want show a USB-Device in my application. My application must show a new device and react when lost a USB-Device. I don't see an function in Framework for this scenario.
|
| simple question about casting from DB | 13 Sep 2005 16:05 GMT | 3 |
I'm trying to retrieve data from database (MS Sql serv) from field of BIT type. I'm trying like this: while (myReader.Read())
|