| Thread | Last Post | Replies |
|
| Newbie With Database Connection Error | 31 Oct 2005 15:31 GMT | 1 |
Wonder if Somebody could help me? I`ve been searching all over for a solution but am totally lost. I have a Class called Connection as below: Public Class Connection
|
| how to erase all rows in DataGrid before populate it again | 28 Oct 2005 14:10 GMT | 1 |
How can I erase the content o a Data Grid so the next content will be a fresh one, instead of ADDING to the last line in the datagrid...? Thank you
|
| Binding combobox to a cell of a datagrid | 28 Oct 2005 13:43 GMT | 1 |
i am facing problem with attaching combobox to a cell of a datagrid. namely to the cell 3rd row 4 column.. then the combobox should display the content of that particular cell... can anyone help me in this regard
|
| Empty table | 27 Oct 2005 20:47 GMT | 2 |
Hello everybody, I have controls two tables in a dataset that are linked with a relation and all field are bind to control on a form. When I navigate to a row in the parent table for wich there is no child, the binded text box are empty, as expected. When I put text in the ...
|
| Results of query are not returned in DataAdapter Fill method | 21 Oct 2005 16:43 GMT | 2 |
Windows Form Application, MSAccess Database, VB.NET I am having a very strange problem with the OleDb.OleDbDataAdapter.Fill method.... I have used this method thousands of times with success and have never had any problems, but recently I have a query that will
|
| Concurrency | 21 Oct 2005 01:26 GMT | 2 |
i've been researching concurrency issues with ado .net for the past few days and have found some trouble finding examples that suit my needs. Over and over again the only two options i've found is either save the your changes (DataRowVersion.Current) or don't (DataRowVersion ...
|
| Using DataView filter when binding to DataGridView | 19 Oct 2005 20:49 GMT | 4 |
I have set the 'datasource' property of a 'bindingsource' object to a DataView ('dv'). The dv is in turn bound to a dataset table: dv = this.MyDataSet.MyTable.DefaultView; I then set the 'datasource' property of a DataGridView ('DGV') object to the
|
| SQL Server and DataSet bound to DataGridView | 19 Oct 2005 15:41 GMT | 2 |
Using VS 2005, I've added a datasource to a DataGridView ('DGV') and this creates the automatic designer code to bind a dataset to the DGV and a data adapter to update the SQL database. The problem is that if I then change the database (e.g. add a field), I need
|
| BuildSortString exception | 19 Oct 2005 01:34 GMT | 2 |
I am using the SortableBindingList<T> class described in the MSDN Custom Data Binding article at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnforms/html/wi nforms11162004.asp?frame=true This business object is displayed in a listbox using databinding via a
|
| binding to the DataGridView | 16 Oct 2005 14:04 GMT | 1 |
I've been looking at the code samples for binding data to a DataGridView using the bindingSource property. I do somthing like bindingSource = new BindingSource();
|
| refer to a field in a table | 15 Oct 2005 06:09 GMT | 7 |
i think i FINALLY found the correct group...wooohooo using vb2005 i drag-dropped a table onto a form, and removed a bunch of fields i didnt actually need on the form for dataentry.
|
| Deepbinding: ICustomTypeDescriptor problem | 12 Oct 2005 15:29 GMT | 1 |
I'm trying to implement deepbinding for my custom business objects. I have written two custom classes: BindableObject which implements ICustomTypeDescriptor BindableCollection which inherits CollectionBase, ITypedList,
|
| datagrid and custom collection object synchronization | 12 Oct 2005 13:40 GMT | 2 |
I have already posted this on microsoft.public.dotnet.general, but without answer. I have custom collection that is bind to the System.Windows.Forms.DataGrid. My custom collection business object has property Quantity.
|
| databinding to two comboboxes through dataset relationship | 05 Oct 2005 08:55 GMT | 1 |
I have two combo boxes that are populated and bound from two related dataset tables through their relationship, like this: //bind to domain tables to populate values ParentComboBox.DataSource = myDataSet.ParentTable;
|
| Unbound Datagrid Limit Columns | 03 Oct 2005 23:40 GMT | 1 |
The DataGrid appears to show all public properties from the datasource as columns in an unbound datagrid. Is there a way to limit the set shown? I'm doing this not to avoid showing them but to avoid the properties being requested from the objects in the datasource.
|