| Thread | Last Post | Replies |
|
| strange error message that try block does not catch | 15 Nov 2006 13:15 GMT | 2 |
When I step through code and come to the line in the try block try { chkJobCompleted.Checked = dispatchJob.JobCompleted;
|
| How to set a C # form never be focused? | 15 Nov 2006 07:41 GMT | 2 |
Here comes a C# Form focus controlling question. I write a C# program that only contains a form and will attach to a general process when I execute it, (e.g.: Notepad.exe) Now, the C# form can display successfully without stealing the focus from the Notepad
|
| Preferred method of terminating an application? | 15 Nov 2006 03:04 GMT | 2 |
What is the best way to terminate a Windows Forms app using .Net 2.0? Any comments appreciated. - Lew
|
| how to create a bmp/png of an exact size ? | 15 Nov 2006 01:43 GMT | 2 |
What tool do I use and how do I create a bmp/png of an exact size ( m x n pixels ) ?
|
| Windows service debugging | 15 Nov 2006 01:25 GMT | 3 |
How to set up windows service so I'd have a windows form and I could run for example "start" or "stop" from it. I don't want to do it by just seting up a reference to dll in windows form project. I'd prefer windows service to work just as normal and I'd have this additional form ...
|
| DataGridViewCell has lost its DataGridView - How to solve? | 14 Nov 2006 22:59 GMT | 3 |
I need a strategy to debug this situation... I can't put all the code involved, but here are some of the critical lines with comments: -------------------------
|
| The VS2005 ToolBox is big slow jug of lard (not literally, I'm speaking metaphorically) | 14 Nov 2006 19:17 GMT | 3 |
I'm using VS2005. I have a solution consisting of twelve projects. All projects are console/service apps except for one which is a WinForms app. There are no web projects. I'd say that I'm at around 125k-150k lines of code in total.
|
| 'Status' window. | 14 Nov 2006 13:15 GMT | 2 |
I am writing a program that will have lots and lots of messages to the user. I would normally use a listbox and add the message at the end. What I was wondering is is if there is some way to automatically limit the number of items in the list box or do I have to delete them ...
|
| Downgrade from Windows XP 64 to Windows | 14 Nov 2006 05:28 GMT | 1 |
I wanted to step back from Windows XP 64 to regular Windows XP if possible. What is the easiest way to do this?
|
| GrandChild to a node in a Treeview | 14 Nov 2006 02:59 GMT | 4 |
How do I add a grandchild to a node programatically in a Treeview?
|
| DataView to DataGridView binding problem | 13 Nov 2006 20:13 GMT | 2 |
How do I bind my DataView to my DataGridView control? Here's the scenario: because I want to make my first column a check box, I have defined a collection for my data grid in the designer. I also had to specify the columns for my dataTable (see code below). After I did that, ...
|
| Validating event in databound controls | 13 Nov 2006 19:46 GMT | 1 |
I've created a custom control derived from TextBox, which internally parses the Text to a decimal value (in the OnValidated method) and exposes this value as a Value property. The control handles invalid input in an overwritten OnValidating method by
|
| New to 2.0 question: How do you make a DataGridView comit changes? | 13 Nov 2006 19:45 GMT | 1 |
Using the Visual Studio.NET 2005 designer, I have a grid bound data a DataBindingSource, no code was written, I just used the VS.NET provided tools to set up three columns and I have the DataGridView acting by default so I can delete rows and edit the contents of the grid.
|
| How to avoid a designer creates a Size line for a derived control | 13 Nov 2006 15:52 GMT | 6 |
I am creating a custom button, derived from System.Windows.Forms.Button. In this new control I assign in the constructor a size for itself, because I need that to be a fixed one: e.g., public CustomButton()
|
| How to change default language of a TextBox? | 13 Nov 2006 15:05 GMT | 1 |
I have a TextBox in a form that has the property RightToLeft is set to Yes. The TextBox is also Right to Left by default. I need to set the default language of the TextBox to arabic. Thank you.
|