| Thread | Last Post | Replies |
|
| Custom Application Settings | 23 Jun 2006 18:13 GMT | 1 |
Using the settings editor I am trying to add a setting whose type is a custom type. In a first approach I tried a class marked as [Serializable]. But then when I try to get the property the way shown bellow I get null returned.
|
| Master/Detail sample? | 23 Jun 2006 18:02 GMT | 2 |
I was working with the sample given for master detail and so far I have: ' Bind the master data connector to the Manual Order table. _masterBindingSource.DataSource = _dsManualOrder _masterBindingSource.DataMember =
|
| VS.NET 2005 and XP Visual Styles | 23 Jun 2006 18:00 GMT | 4 |
I've recently installed VS.NET 2005 (prof) and when I create a WinForm app and, say, add buttons to it, by default you get the old crappy standard buttons -- no the new XP Style buttons with rounded corners, etc. On another person's system the same software is installed and
|
| TreeView Questions | 23 Jun 2006 14:43 GMT | 1 |
Using VS2003 form.Treeview class I need to populate a treeview using three tables in my database. tblOrgSystems looks like this: OrgSystemID OrgSystem
|
| Application.Restart Tough One | 23 Jun 2006 07:14 GMT | 5 |
I am having trouble getting Application.Restart to work. My somewhat lengthy startup code is shown below. Interestingly enough it will work, if I display a message box that displays Application.Application.Name.
|
| DataGrids WITHOUT DataTables, etc | 23 Jun 2006 02:54 GMT | 3 |
I am building an object based system and have my data in the form of objects with properties. I dont want to have to load them into DataTables just so I can use them with a DataGrid. However I cannot see any easy way of switching which cells are read-only or visible once I have ...
|
| Modeless form with parent form | 22 Jun 2006 18:11 GMT | 4 |
I am trying to create a modeless form whose parent is another form. If the modeless form is toplevel it won't let me set the parent, if the modeless form is not toplevel it won't let me show. I 'solved' the problem by making the modeless form toplevel only after it is shown. ...
|
| Listview flickering and performance problem | 22 Jun 2006 15:36 GMT | 1 |
I have made a derived Listview which can accept the controls as items in it. Controls that we are using are Buttons in each row and implemented Grouping with the help of controls(label on panel) . Coz Inbuilt listview Grouping not supported in OS like window 98.
|
| System.Windows.Forms.Timer.Reset() ??? | 22 Jun 2006 14:39 GMT | 1 |
Why is there no Reset() method on the windows forms timer? Calling Start() then Stop() only disables the raising of events for this period. It doesn't reset the timer back to 0. For instance, I have a timer that elapses every 30 seconds, let it run for 10 seconds, stop it
|
| disable TabPage | 22 Jun 2006 11:48 GMT | 2 |
I can't find the "disable" property of tabpage. How to do it ? Someone said that we can set the tabpage's text color to "grey", so I code as: this.tabpage1.forecolor = Color.Gray.
|
| Adding rows to a bound table that is bound to DataGridView(DataSou | 22 Jun 2006 06:05 GMT | 2 |
If I add rows to a table like: _dtManualOrderItem.Rows.Add(mo) How does the DataGridView get notified of this event? I don't see a Bind or Rebind method. If I remove the binding and readd it:
|
| Cannot Update data via DatagridView | 22 Jun 2006 05:12 GMT | 1 |
I am using VS2005. I am using Datagrid view to edit some datas and update it. this is what I have bind to Datagridview SqlAdapter = New SqlDataAdapter()
|
| Webbrowser Class and printing | 22 Jun 2006 04:21 GMT | 1 |
Is there a way to set the default printing and the orientation by Code using the webbrowser class? Thanks, Victor
|
| How can I update a WinForm without stealing focus? | 22 Jun 2006 03:10 GMT | 7 |
How can I update a WinForm without stealing focus? I have a main form which has a Timer to perform updates (query data and display it on the form). (Yes, it uses Invoke.) I also have menu items that can display dialogs to set various things.
|
| Microsoft has let me down -- form breaks in designer | 21 Jun 2006 21:32 GMT | 4 |
Sorry for cross-posting this all over the place, but I've already lost two days to this problem, and I'm at my wits end. I've searched the usenet archives up and down and tried everything I can think of, but I just can't get the Visual Studio designer to stop breaking on me.
|