| Thread | Last Post | Replies |
|
| Copy(able) text | 11 Sep 2007 16:30 GMT | 1 |
If place a file on your desktop, right click and select 'Properties', you get a dialog box with things such as type of file, location, size etc. This information is selectable with a cursor and can be copied to the
|
| OleDbType - enumeration | 11 Sep 2007 15:54 GMT | 1 |
How can I fill an array for each type in OleDbType where column1 is the literal and column 2 is its numeric value as string? BigInt 20 Binary 128
|
| KeyEventArgs e | 11 Sep 2007 15:47 GMT | 1 |
I have the code below: private void OnKeyDownHandler(object sender, KeyEventArgs e) { if (e.Key == Key.Return)
|
| meaning | 11 Sep 2007 15:36 GMT | 3 |
Does this mean Convert? double Amout = 123; decimal value = (decimal)Amount; What will be value after that? 123?
|
| DataTable.Select - System.Data.SyntaxErrorException | 11 Sep 2007 14:52 GMT | 2 |
I am getting an error when i try this code. DataRow[] childRows = dsQueryPlan.Tables[0].Select("Parent = 1"); the error is : System.Data.SyntaxErrorException
|
| SplitContainer Control | 11 Sep 2007 14:50 GMT | 4 |
Is there a fix for the bug in the SplitContainer control? When the designer generates the code for a SplitContainer, it does so in this order: this.mainSplitContainer.Panel2MinSize = 290;
|
| access parent class? | 11 Sep 2007 14:49 GMT | 2 |
i have a class Workstations which inherits collectionbase. basically Workstations is a collection of Workstation's my workstations collection has a property called ValidatedCount the workstation class has a method called Validate()
|
| OpenFileDlg multiselect upper limit? URGENT, Please! | 11 Sep 2007 13:49 GMT | 1 |
I'm making a post prosessing tool,. I have a directory with 832 files with somewhat long file names. When selecting all the files using OpenfileDlg with multiselect activated, the dialog returns with message that it could not find all files (selected in the box). I suspect some ...
|
| default construct values for hashtables | 11 Sep 2007 13:47 GMT | 3 |
I have a class which contains all my constant values such as; public static readonly string[] strStringOps = {"Equals","Not Equals","Contains"}; The above nicely assigns the values into the string array. However
|
| Threading Question | 11 Sep 2007 13:46 GMT | 8 |
Just getting my feet wet with threading... Is it the case that... once a method starts executing in a given thread, that method will [can only] finish executing on that same thread? Or is it possible for a given method to begin executing on a thread, and then finish
|
| Web Service | 11 Sep 2007 13:22 GMT | 2 |
I am learning about Web Services, so I am following the instructions in HOW TO: Write a Simple Web Service by Using Visual C# .NET on the MSDN site: http://support.microsoft.com/kb/308359/ I have entered the code but when I build it, I get an error about a file
|
| Pack directory with subdirs and files into file | 11 Sep 2007 13:10 GMT | 2 |
My goal is to pack directory structure ( via code ) into file. Then i need to have access to these directories packed in this file ( maybe via some collection or something ). Is there a common way to do this? Thanks for help and Regards
|
| Application_BeginRequest - save cookie | 11 Sep 2007 10:50 GMT | 2 |
i'm attempting to set a cookie which determines the last page that I visited within my aspx 1.1 application. It seemed to me that the most logical place would be within global.asax, and in particular within; for example
|
| Switch connectiong string in web.config file base on configuration | 11 Sep 2007 10:26 GMT | 6 |
How can I switch connection strings stored in config file based on the build configuration? Or my real question is how most people maintain different connection strings when their code is running in different environment, like development, building, testing....
|
| using using | 11 Sep 2007 09:34 GMT | 1 |
When I want to invoke Dispose() automatically on an object, I can use using(object) { //do something with object
|