| Thread | Last Post | Replies |
|
| Windows Form and Windows Form User Control - Where Is The Method That Would corresspond To A Web Form Pre_Render Method | 31 Mar 2005 22:43 GMT | 1 |
MyMainWebPage.aspx contains MyUserControl.ascx MyUserControl.ascx has a DataTable Property MyDataTable MyUserControl.ascx has a DataGrid which whose datasource is MyDataTable (or technically it's private accessor but that I don't think is an issue here)
|
| Delegate by Book | 31 Mar 2005 21:13 GMT | 2 |
Does anyone know about a good book that teaches Delegates or other types type threading?
|
| Capturing change to TextBox | 31 Mar 2005 12:41 GMT | 4 |
I want to simply capture changes to a TextBox and perform some processing when the user has edited the text. The TextChanged event fires even while the user is editing the text, but I only want to perform my validation when the user finished editing the text
|
| Dangling process, when calling ShowDialog twice from Main | 31 Mar 2005 10:55 GMT | 3 |
i've used jason clarks recommendations for handling unhandled exceptions in my winforms app (http://msdn.microsoft.com/msdnmag/issues/04/06/NET/default.aspx). if an unhandled exception happens, i open up an 'Error-Logger' form,
|
| detecting instances of my App | 31 Mar 2005 06:52 GMT | 3 |
I want to allow running only one instance of my Application. How can I detect that a previous instance of my WinForm App is running in order to stop the second instance?
|
| Creating DesignerVerbs for a Reflection.Emit-ed class for use in a PropertyGrid | 31 Mar 2005 05:58 GMT | 3 |
I've hit a bit of a brick wall in my use of the PropertyGrid control. I am writing a Windows Forms application that does the following: - dynamically create a class using Reflection.Emit - the class simply holds a number of properties ("Name", "Description", etc).
|
| Form.Update in Windows Xp | 31 Mar 2005 04:48 GMT | 5 |
I'm developing an application that executes a long algorithm and I want to show a progress bar, and every time the progress bar is updated, I also update the main window, so the window refreshes the invalidated areas. I was developing in win2k and everything works fine, but now Im ...
|
| ISDATE and Regional Settings | 31 Mar 2005 03:05 GMT | 1 |
 Signature John
|
| Sources for threads | 31 Mar 2005 02:26 GMT | 2 |
Does anybody know where I can find some good examples of using threads in c#.net windows applications? Thanks Gav
|
| Label and Button text not drawing | 31 Mar 2005 01:54 GMT | 1 |
(Type your message here) I have a small assembly that displays dialogs for logging in and message boxes if an error occurs. The button text and label text in the dialogs isn't drawing when the form is opened by either Dialog.ShowDialog() or MessageBox.Show(). In the case of a dialog ...
|
| Timers and threading | 31 Mar 2005 00:39 GMT | 3 |
I am writing a program that handles authentication, and based on the user's permission level, can do certain things in the program. However, I want to have a global 10 minute time out in case a user is idle for that amount of time.
|
| FIFO in a richTextBox | 30 Mar 2005 19:11 GMT | 3 |
I have a richTextBox that is receiving lots of data over a serial port. The problem is that the display of the text gets slower and slower as more and more text is added (using .AppendText). Is there a way to limit the text box to some fixed number of lines (or characters) of ...
|
| Reusing GUI elements | 30 Mar 2005 18:24 GMT | 2 |
Hello people, I'm new at .NET development so forgive me if I ask about the obvious. There are several forms in my application that have similar groups of controls. I would like to extract the UI and functionality into a single entity so I can reuse it in the application.
|
| UserControl Text property | 30 Mar 2005 15:27 GMT | 5 |
I have a control that derives from UserControl. In addition, I have overriden the Text property and put the attributes on it so it shows up int the designer. However, it will not save the value no matter what I do. I've applied every attribute I can think of. Any help in this ...
|
| Using The NativeWindow Class To Draw A GDI Type Circle On Top Of A DataGrid Possibly In The Override OnPaint | 30 Mar 2005 15:06 GMT | 3 |
I have a requirement to put a GDI style circle or rectangle border around the selected row of a datagrid/ It will overlap into the row above and below the selected row. Doing this in a the OnPaint of a subclassed DataGridTextBoxColum dos not seem like a practical way to do it.
|