| Thread | Last Post | Replies |
|
| Cancelling a new row in an unbound datagridview | 31 Jul 2006 23:38 GMT | 2 |
When a user adds a row to an unbound datagridview, then clicks out of the row (or the control loses focus for any reason) without entering anything, I would like to have the row automatically deleted. However, I cannot find an appropriate event to handle this case. Using
|
| Modal Windows & Parents | 31 Jul 2006 22:44 GMT | 3 |
Is it possible to have form.ShowDialog() be modal only to its parent/owner form, and allow the user to still use any other forms in the app? I've tried passing the parent form in as the parameter to form.ShowDialog, but that doesn't seem to make any difference.
|
| SaveFileDialog translation issue | 31 Jul 2006 17:27 GMT | 1 |
In my application I use SaveFileDialog as follows. SaveFileDialog exportFileDialog = new SaveFileDialog(); exportFileDialog.Filter = "csv files (*.csv)|*.csv"; exportFileDialog.RestoreDirectory = true ;
|
| Winform Splash Screen | 31 Jul 2006 15:38 GMT | 4 |
What is the best practice to create a splash screen in .net winforms applications so that the splash screen loads immediately after we start application and closes when all dlls loading and initializations is completed. I don't want any idle situation to be seen by the user.
|
| text box format | 31 Jul 2006 13:14 GMT | 6 |
What method is considered the best way to ensure users enter the correct data in a text box if you want an integer or decimal?
|
| playing interactive flash(.swf) movies in the form | 31 Jul 2006 11:44 GMT | 1 |
I've a .swf file which has four buttons. There is a motion effect when mouse gets hover on to any of the buttons. I want to integrate this flash file into my form and want ot perform a certain action on the respactive button (which are in the flash file) click. I observed that ...
|
| Tabs, Bound Controls & UserControls | 31 Jul 2006 06:30 GMT | 3 |
All - I have a form with a tab control. There are 9 tab pages with various data bound controls on each. I was thinking of moving theses to seperate usercontrols and then adding the control to each tab page. I haven't conceptually grasped how to handle the data part though. ...
|
| BindingNavigator Location | 31 Jul 2006 06:19 GMT | 7 |
I am just getting into VS 2005 from VS2003 and working through some exercises from a book. Drag & Dropped a couple of datasources onto a form and VS added all the controls including a bindingnavigator and toolstrip.
|
| Tool Window | 31 Jul 2006 02:19 GMT | 1 |
I want to add tool windows to my application like the dockable "Properties" and "Toolbox" windows in VS 2005. I've googled for information about this and can't seem to find any samples or HOW TO articles.
|
| Howto: DataGridView VB.NET 2005 - How can I set cell type to checkbox programmatically? | 30 Jul 2006 23:53 GMT | 1 |
Can anyone show me (sample code???) how to programmatically set a column type to "CheckBox" in code (as opposed to the designer)? The datagridview isn't bound to a design-time dataset so until it executes there are no columns for which I can select a column type.
|
| How to Create Combobox with Multi-Columns | 29 Jul 2006 12:16 GMT | 3 |
I'd to create combobox that can display multi-columns when user click it. Thx, Saroeurn
|
| I need a gap between two tabs in a TabControl. Could anyone help? | 29 Jul 2006 03:32 GMT | 3 |
I have a TabControl on a form and I would very much like to have a (let's say) 30 pixels gap between two specific tabs. Is there any way how to achieve this? Thanks for any help...
|
| How do I focus on this cell in a winforms Datagrid control????? | 28 Jul 2006 20:06 GMT | 1 |
why doesnt this work???? DataGridCell newrowcell = new DataGridCell(dataGrid1.CurrentRowIndex,0); dataGrid1.CurrentCell = newrowcell;
|
| Button Click Event Fires When Disabled | 28 Jul 2006 15:25 GMT | 6 |
While testing one of our applications, I found some interesting behavior with the Button click event using .NET 2.0. Let's say we have a windows form with a button on it. When the user clicks on the button, the button disables itself (to prevent the user from clicking
|
| Application.SetUnhandledExceptionMode() | 28 Jul 2006 14:22 GMT | 1 |
I'm relatively competent at windows forms programming in net 2.0 (VS 2005), however, I've never really gotten my hands dirty with exception handling until now... My application is using a startup form (not a sub main) for a windows forms
|