| Thread | Last Post | Replies |
|
| Hiding method from everyone but two assemblies. | 07 Feb 2007 22:03 GMT | 6 |
I have assembly a, b and c. Assembly b has a static method in one of its classes that i would like classes in a and c to access but no other assembly. It would be similar to internal but with the ability to specify which
|
| Suspending a thread from another thread | 07 Feb 2007 21:39 GMT | 2 |
I made an application that uses the main thread for the UI, and another thread to communicate through the RS232 port. I would like the communication thread to be suspended immediately when the user presses the ESC key. It should resume when the user answers a dialog box. The ...
|
| Strange!! Unexpected end of file while parsing Name has occurred | 07 Feb 2007 21:30 GMT | 3 |
Hi Group, I am facing a strange problem here: I am trying to read xml response from a servlet using XmlTextWriter. I am able to read the read half of the xml and suddenly an exception:
|
| Align Anchor Panel BackgroundImage | 07 Feb 2007 21:03 GMT | 4 |
I have a need to put an image on the background of a SplitterPanel. However, I need it to appear in the bottom right corner of the panel instead of the standard Centered/Tiled/Stretched found in the BackgroundImageLayout Property. Is there an example of how to do that or could ...
|
| Problem with assigning the result of [string].IndexOf into a const int? | 07 Feb 2007 20:44 GMT | 5 |
Having a cpp background I'm curious why I can't do the following: const int openElementPosition = strXmlLine.IndexOf("<RacingNumber"); without getting the following error: Error 1 The expression being assigned to 'closeElementPosition' must
|
| Programmatically detect if UAC turned on? | 07 Feb 2007 20:07 GMT | 3 |
This could be REAL simple, but I cannot find any info on it anywhere after 2 hours of searching. How can I programmatically determine if the UAC is turned in Vista using C#? I need to detect this because for some reason Office automation (creating a
|
| dropdown list control populating with db query as well as default one | 07 Feb 2007 20:01 GMT | 2 |
The problem is as follows: I have a table from where I am getting consultant's name and populating the dropdown list control. But I want to populate the default one which I got it as a query string from the previous page.
|
| How programaticly change row in a GridView? | 07 Feb 2007 19:59 GMT | 4 |
I have used the SqlCommand and DataReader to read data to a DataSet This dataset is the used to set the properties; DataMember and DataSource of the DataGridView. Now what i want to do is to go to a specific row of the DataGridView.
|
| DateTime.Parse problem with Time Format using period | 07 Feb 2007 19:08 GMT | 4 |
I am having a problem formatting a string when the time is in format hh.mm.ss - used in Europe Parse seems ok when the date uses "/" or "." as seperator but I get an exception when time uses "." as seperator as used in Europe
|
| A string class that don't stretch | 07 Feb 2007 18:56 GMT | 7 |
I need an special string that have a fixed capacity and that automatically(silently) trims extra space. MySpecialString str = new MySpecialString(10); str = "1234567890ABCDE"
|
| Read XML file | 07 Feb 2007 18:45 GMT | 3 |
This is my xml file content: <?xml version="1.0"?> <server> <mssqlChicago>
|
| resizing , resolutions and positioning!!! | 07 Feb 2007 18:17 GMT | 5 |
i have a big app at hand and i worried about resolutions and resizing right from the start , basically i have two problems : i tried *naively* to handle different resolutions by hardcoding different sizes and setting them accordingly in the Form() construct ,
|
| crash in release build | 07 Feb 2007 17:55 GMT | 6 |
The application i build in C#.net is crashing once a month. I can't reproduce the crash. Is there a way to track down where the program crashes, without putting logging everywhere in the code? Is there a way to get a stack
|
| What is wrong? | 07 Feb 2007 17:35 GMT | 15 |
void establishAddress(out string [] address_line) { // do something }
|
| Custom Validation Message in a Property Grid | 07 Feb 2007 16:35 GMT | 1 |
I have a property grid used for editing the members of a class of which one is an int. If this int value is deleted in the property grid then I get a default error dialog box that says: "Property is not valid." [Details] "is not a valid value for Int32."
|