| Thread | Last Post | Replies |
|
| Q: property problem (enum) | 23 Mar 2006 13:32 GMT | 3 |
I want to create a property in class (datatype=enum). In one other class I have declaration of enum: public enum enumCrep {
|
| Backgroundworker Control | 23 Mar 2006 13:21 GMT | 2 |
Hi -- I have a C# application that basically has a button that executes a SQL Reader to loop thru a rather large resul set. Thru each interation of the reader object, I check to see if a file exists on the server. If it does, I
|
| Question about casting | 23 Mar 2006 13:07 GMT | 3 |
I have a Hashtable, key is string and value is ArrayList. The problem is I cannot cast the value from object to ArrayList. like this: Hashtable ht = new Hashtable();
|
| Best practice for embedding forms | 23 Mar 2006 12:32 GMT | 2 |
I am trying to write an app which will have say a MainForm that has a TreeView and a Panel control on it. The project also has 2 other forms. Now the TreeView would have 2 nodes and on each node click one of the 2 forms will be created (if not created before) and is shown ...
|
| URGENTCusom dialog boxes | 23 Mar 2006 11:38 GMT | 2 |
I am writing an app that does some syncronization with a mobile device. I use the System.Threading.Thread.Sleep(15000); to sleep the main app thread for 15 sec till the sync is finished.
|
| Q: ColumnChanging | 23 Mar 2006 11:08 GMT | 3 |
Following the walkthru in Visual Studio 2005, double clicking on a field in dataset doesn't generate a ColumnChaning event as said? Any ideas why? Regards
|
| Passing mouse events to desktop window | 23 Mar 2006 08:49 GMT | 2 |
How do I pass the mouse click events generated from my DirectX Application to the desktop window? Regards
|
| Clever Techniques for Determing Dimensions of Multi-Line Label? | 23 Mar 2006 08:42 GMT | 3 |
Long ago I developed a simple algorithm for calculating how much space is required to display a multi-line label in a limited width. It seemed to be working okay but then my testing revealed a flaw when trying to display the following string with an MS Sans Serif 8 point font in ...
|
| C# web form tutorial | 23 Mar 2006 06:28 GMT | 3 |
I'm new to the C# web form application. Would someone give me some links regarding to the step by step or tutorials? Thanks for help. Jason
|
| Disabling Form Objects | 23 Mar 2006 05:10 GMT | 2 |
I have to issues: 1) Does anyone know of a programmatic way I can disable all textboxes, combo, listboxes, and buttons on a form? 2) What is the best practice for disabling multiple controls on a form.
|
| Regex: Finding strings in a source file | 23 Mar 2006 05:06 GMT | 8 |
I need to create a Regex to extract all strings (including quotations) from a C# or C++ source file. After being unsuccessful myself, I found this sample on the internet: @"@?""""|@?"".*?(?!\\).""|''|'.*?(?!\\).'"
|
| Bizarre Behaviour Console versus GUI App wrt ActiveX interop | 23 Mar 2006 04:40 GMT | 1 |
We have an ActiveX control that we added as a reference to a *Console* C# testbed. The testbed functions, except that: a. On VS 2003, performance is fine, but on VS 2005, performance is reduced approximately 50-fold.
|
| ComboBox | 23 Mar 2006 04:23 GMT | 4 |
I'm used to setting the Text property and Value property of a ComboBox. I do not see this option for C# 2.0. Am I missing something? Basically, I'm trying to loop thru an ADO.NET reader object and populating the combobox with the "Text" and "Identity" column for a database.
|
| Localization with resource files? | 23 Mar 2006 04:08 GMT | 2 |
I want to create a windows application in c# (1.1 or 2.0 doesn't matter). I want the user to able to change the application language, and I want the changes to take effect immediately. Should this be done with resource files and CultureInfo, or is there a
|
| Default Maxlength - CLR 2.0 | 23 Mar 2006 03:30 GMT | 1 |
Since I upgraded to VS2005 - when I drag a stored procedure onto a dataset now - the datatable is setting maxlengths for some of my fields. Is there a way I can default the designer not to set the maxlengths. (I don't want to go through each column and set it to -1 by hand.)
|