| Thread | Last Post | Replies |
|
| Security Exception thrown from non-executed code? WHY WHY WHY??? | 14 Oct 2004 04:55 GMT | 1 |
This is very strange. The ".Net Configuration" - "RunTime Security Policy" - "Permission Sets" used by my smart client includes all the permissions (not full trust).
|
| Grid problem due to null fields? | 14 Oct 2004 04:39 GMT | 4 |
I've just created a fairly routine grid but I have a problem that seems to be caused by the query. The query is a Left outer join consisting of 5 fields and the last two are frequently Null. The configuration of the grid is fairly routine and I've done it like this dozens of ...
|
| Create a ToolBar Application | 14 Oct 2004 03:20 GMT | 3 |
I would like to know if there is any documentation on how you can create, what I am calling a "ToolBar Application". An application like the Google or Windows Media Player bars that can sit in the TaskBar as ToolBars. I want to be able to right click on the TaskBar and select ...
|
| Validating Event Firing at Design Time???? | 14 Oct 2004 01:19 GMT | 1 |
I'm adding a bunch of Validating events to my form, and find that the Validating event of a TextBox is firing. This particular TextBox is within a tab page, if that matters at all. How do I either prevent this event from firing, or else how should my code
|
| MessageBox positioning? | 14 Oct 2004 00:13 GMT | 5 |
Hi, I want to position my MessageBox in the center of the parent form and not in the center of the entire desktop as seems to be the default. How would I accomplish that?
|
| list view: why GetItemAt method does not work? | 13 Oct 2004 21:11 GMT | 1 |
I am using list view control, try to find the sub item clicked by the mouse.Inside mouse_down method, I use GetItemAt method but it always return me null value, here is my sample code:
|
| StatusBar Text not updating | 13 Oct 2004 20:58 GMT | 3 |
I have an event handler on the UI thread containing the following lines of code: statusBar1.Text = e.msg; System.Diagnostics.Debug.WriteLine(e.msg);
|
| How to identify controls in a collection | 13 Oct 2004 20:13 GMT | 6 |
I have a user control that has a button and five labels. Using foreach to loop through all the controls, how do I identify all the labels apart from the button?
|
| blinking forms | 13 Oct 2004 19:09 GMT | 3 |
Why is it that when I close a form that is displayed using ShowDialog(), my main application form refreshes or "blinks" but when I use Show() and close the form, the refresh does not occur?
|
| Windows XP Taskbar Group Title | 13 Oct 2004 17:38 GMT | 2 |
Can anyone tell me where I could find information on how to configure a .NET WinForms application to work with the Windows XP feature - "Group Similar Taskbar buttons". I need to be able to specify the group/stack title for various windows in
|
| WebClient Saving Exception | 13 Oct 2004 17:38 GMT | 3 |
I'm converting a C# console program to a Windows form. I use this code to grab a .gif and save it to a folder on my C: drive webC = new WebClient();
|
| Multiple DataRelations and DataGrid | 13 Oct 2004 17:31 GMT | 1 |
I want to accomplish a DataRelation not only between Parent and Child but also to a Grandparent. I thought that would be possible by establishing a Datarelation between GrandParent and Parent and another one between Parent and Child. Here is part
|
| Wrap Winforms DataGrid header | 13 Oct 2004 11:45 GMT | 1 |
I'm looking for a way to wrap a text in Winforms DataGrid header (see below). I know it can be done to the cells in the grid by overriding the paint method but i can't seem to find a similar way to handle the column headers. Any help would be much appreciated.
|
| User Control Event Handling | 13 Oct 2004 11:29 GMT | 2 |
I have a user control (inheriting from System.Windows.Forms.UserControl) with a button on it. I've added the control to the toolbox and have dragged it onto a form from another project. How can I capture the click event of the button in the parent form?
|
| How do I freeze DataGrid's Columns? | 13 Oct 2004 08:07 GMT | 6 |
I would like to know if anyone knows how to implement the funcionality of freezing columns of a datagrid (like in excel for eg.) Thanks
|