| Thread | Last Post | Replies |
|
| CredUIPromptForWindowsCredentials | 24 Sep 2007 12:48 GMT | 2 |
How do I use CredUIPromptForWindowsCredentials to validate logged on credentials in a c# application running under Vista?
|
| Difference between Activator.CreateInstance and new | 24 Sep 2007 10:09 GMT | 2 |
In both case, using Activator.CreateInstance or new, except for the different approach and difference "parameter" required, the final result should be the same, a specific object type ready to be used along with its method and function. Isn't it?
|
| Textbox based status window issues | 24 Sep 2007 09:27 GMT | 3 |
I created winforms .net 2 mdi child status window class below. My long running code writes messages to this window to allow user to see progress. I want that Log() method writes text at new line and textbox scrolls when
|
| Vista Themed Controls | 24 Sep 2007 04:45 GMT | 5 |
hi, how can i get all the controls to have the vista theme (ex the progressbar, treeview, etc) instead of the XP theme (on vista machines ofcourse)? thanks
|
| Variable length padding in String.Format | 24 Sep 2007 04:32 GMT | 5 |
I understand a variable/constant can be aligned when dumped to a string like this: String.Format("|{0:-5}|", "abc"); This would produce a left-justified output like this: |abc |
|
| datagridview checkbox | 24 Sep 2007 02:55 GMT | 2 |
Gday, I have a datagridview that I am creating the columns programatically which all seems to work fine. I have a couple of dropdown boxes, so I have set the editMode= EditOnEnter.
|
| CancelEventArgs.Cancel - How Event Raising Code Know if Client Set .Cancel=true | 24 Sep 2007 02:30 GMT | 3 |
In consideration of the brief sample code at the following link... http://msdn2.microsoft.com/en-us/library/system.componentmodel.canceleventargs.c ancel.aspx ... when we set e.Cancel = true, How does the form subsequently know to NOT close the form? More generally, after an event ...
|
| Cannot convert type 'int' to 'bool' | 23 Sep 2007 22:49 GMT | 6 |
The following code: int test = 1; bool isTrue = (bool)test; results in a compiler error:
|
| Out of memory when loading an image file | 23 Sep 2007 19:35 GMT | 4 |
When I tried to load 2GB tiff file, I got an "out of memory" error. I have 512MB memory, but I set virtual memory to 5GB. Is it possible to cut the big tiff file into several sub-images without loading the whole image?
|
| Out of memory when loading an image file | 23 Sep 2007 19:33 GMT | 1 |
When I tried to load 2GB tiff file, I got an "out of memory" error. I have 512MB memory, but I set virtual memory to 5GB. Is it possible to cut the big tiff file into several sub-images without loading the whole image?
|
| Can Dictionary<> store a static class ref? | 23 Sep 2007 18:47 GMT | 4 |
I have a series of changing string IDs that are loaded dynamically a couple times a minute. I need to associate each ID with a different static class so later on in the app's lifecycle it knows which static class to use for processing.
|
| thread sleep | 23 Sep 2007 17:57 GMT | 3 |
how can i get the current thread to perform a call to thread.sleep() tia DaveP
|
| regexp question | 23 Sep 2007 14:43 GMT | 1 |
i'm trying to get the right regexp to find a single-quote string. i came up wtih: '(.|\n)*?' my questions:
|
| WSDL 2.0 | 23 Sep 2007 11:09 GMT | 1 |
I'm looking for any information about WSDL 2.0 support in .NET (and no, Google is not being my friend.) Can anyone tell me: What version(s) of the .NET framework will support WSDL 2.0? What version(s) of VS.NET will produce web services that describe themsevles
|
| Connection Strings app.config and encrypting | 23 Sep 2007 10:56 GMT | 1 |
I have a .Net 2.0 windows forms application where a user will supply a connection string for their database server during initial configuration. I want to make sure this string is encrypted when its stored in the app.config file or whatever xml based configuration file I
|