| Thread | Last Post | Replies |
|
| Databinding to a Public Dataset | 28 Feb 2005 13:07 GMT | 18 |
Is it possible to use a Dataset that is set as public on a main form on children forms? It appears that when you go to select a dataset or datatable as the datasource on any of the Winforms controls (in my case the ComboBox) it only
|
| NullReferenceException | 26 Feb 2005 14:57 GMT | 1 |
i got a very strange problem here. In my program, i create the databinding between some textboxes ,comoboxes and a dataview. first i clear the databinding then add the databinding again. then i changed the current row in the dataview several times, the nullreferenceexception ...
|
| Changing DataViewManager.RowFilter has no effect - Northwind.zip (0/1) | 23 Feb 2005 23:52 GMT | 2 |
Using a strongly typed dataset, a DataGrid and some bound text controls where the user selects a row in the DataGrid and the bound controls display it here is the problem: If I bind the grid and the controls to the tables DefaultView and I
|
| creating the databings thru code, can it be done with a loop? | 23 Feb 2005 17:09 GMT | 2 |
hiya, I have a lot of textboxes that I want to databind to thru code. I know that I can do it thru the design time properties, but I feel it is more maintainable thru code.Here is my current approach.
|
| Using two binding contexts | 23 Feb 2005 12:03 GMT | 1 |
Newbie problem I guess? Scenario: Matters table has two fields "CurrentOwner" & "PreviousOwner", both are foreign keys to Users table. Additionally, CurrentOwner is NOT NULL
|
| Query against the table!!! | 23 Feb 2005 04:31 GMT | 2 |
what's the best way in VB.Net to do this: Imagine i have a customes table with fields: cust_ID , cust_Name , cust_country now i want to have a form with three textboxes and a button. when the user
|
| Databinding Custom NameObjectBaseCollection | 22 Feb 2005 23:55 GMT | 2 |
I have a custom strongly-type collection that is inherited from NameObjectBaseCollection and implements ISerializable, IEnumerable, IListSource and IList. I can databind this object to a data grid just fine, however, when I make when I add or remove an object or Clear() all of the
|
| databinding after doing a dataview.rowfilter | 22 Feb 2005 10:20 GMT | 1 |
i get a problem here. can anyone please tell me if i already have a databinding between some comoboboxs and textboxes and a dataview. do i have to add databinding again after i set the rowfilter for the dataview? cheers
|
| Datagrid shows (null) for for empty fields in vb.Net | 21 Feb 2005 11:24 GMT | 1 |
I appreciate if someone helps me about this: I have a customers table which includes some records. but in datagrid , fields which have no value show the keyword (null) what i can do to get rid of this .
|
| Displaying "Deleted" Records in my DataGrid | 19 Feb 2005 21:28 GMT | 1 |
Hey All, I have a DataGrid with a CheckBoxColumn called "Deleted". What I want to do is when I call the Delete() method of a row, that column gets "checked" however the problem with the Delete() method, the row dispears from my
|
| Lookup Binding for ComboBox | 18 Feb 2005 22:43 GMT | 1 |
Binding problems... I have a dataset with 4 related tables: Type Category Matrix
|
| Binding to a collection with an overloaded indexer | 17 Feb 2005 02:59 GMT | 1 |
I have a collection that's based on CollectionBase and it implements IBindingList. I can bind a form to the objects in the list without any problems. However, I want to overload the indexer to this collection. I currently have:
|
| sub forms | 16 Feb 2005 15:18 GMT | 2 |
I want to set up a form which behaves like an Access form where you have a subform linked to a form. Can't seem to find the .NET equivalent structure. any clues please!!
|
| How find Record using BindingManagerBase Class | 15 Feb 2005 11:41 GMT | 1 |
I have developed a data bound form using BindingManagerBase class. I want to find specific record in Dataset's Datatable. What is good way to do this ? TIA
|
| How to update database table. | 13 Feb 2005 11:29 GMT | 2 |
I want to update a DataTable (back into database table) contained in a Dataset. I used [DataAdaptorName].update("[Dataset Name]", "DataTableName]" but it does not update changes back into Database table. What is possible reason of this ???
|