| Thread | Last Post | Replies |
|
| binding custom class to textbox | 10 Mar 2005 08:26 GMT | 2 |
i have a class like: public class MyClass { public MyClass() {}
|
| Binding to checkbox and getting imediate results | 09 Mar 2005 16:27 GMT | 1 |
I have a simple object with some boolean properties which I've databound to some checkboxes, these in turn affect a text control which is also bound and this all works after a fashion. What I want it to be able to do is to change the text whenever a checkbox is
|
| Dataview multiple rowfilter Problem | 08 Mar 2005 12:36 GMT | 1 |
is it possible to set Rowfilter property to multiple fields such as this: dataview1.rowfilter = "Customer = " & "'" & me.txtcustomer.text & "'" dataview1.rowfilter = "Order_ID = " & "'" & me.txtOrder_ID.text & "'" dataview1.rowfilter = "orderd_Item = " & "'" & me.txtorderd_Item.text ...
|
| Unwanted column shown in datagrid | 08 Mar 2005 00:53 GMT | 3 |
All, I have a custom object that inherits from CollectionBase. When I set my datagrid.datasource property to this data grid I get the fields I want, however the count property of the CollectionBase object is
|
| Binding to UserControl causes HasChanges to be True in the Dataset even though no changes made | 05 Mar 2005 17:10 GMT | 2 |
I have a very simple User Control containing a textbox and label control. I expose a ControlText and LabelText property to allow the control's contents to be set as well as the label's text (which is simply a caption for the textbox).
|
| Change value to control binded | 04 Mar 2005 16:59 GMT | 1 |
I have this problem. I have bind a textbox and if I write with keyword a text, it's saved correctly, but if I change the value by programs es. textbox1.text="aaaa"; the value isn't save.
|
| sqlDataAdapter, SQl Server - why two connections | 04 Mar 2005 05:54 GMT | 1 |
I have built a very simple single form Application, with a sqlDataAdapter, sqlConnection, dataSet and a Grid. As soon as I load the application and bind the data there are two connections from my App in SQL Server. Can anyoone explain why this is, and if this means my App will ...
|
| Multiple datatables in one view | 03 Mar 2005 14:18 GMT | 1 |
Does anybody know if it's possible to use a a view, or something like it, to pull together columns from different datatables into one view to bind to a datagrid?
|
| Display columns from different table in same datagrid | 02 Mar 2005 18:54 GMT | 1 |
I need to display 2 tables in the same datagrid. I've been playing with this http://support.microsoft.com/kb/319076/EN-US/ which works great except for a few things: - I know no way to format the displayed data (I have some datetime columns)
|
| Valuemember/Displaymember vs. Delegates | 02 Mar 2005 16:41 GMT | 3 |
I do not think it is good style to use these because you have to hardcode the propertynamed in your code as string literals. Wouldn't it be better to use delegates instead? myComboBox.DisplayMember = new ReturnStringDelegate(myObj.Name);
|
| Synchronizing Grid and Controls on Different Forms | 01 Mar 2005 07:45 GMT | 1 |
Say I have a DataGrid on one form, and a number of simple controls on another form, both bound to the same DataSet. The form with the DataGrid is launched from the control form, and the DataSet and the name of the table are passed to the form's constructor and then
|