| Thread | Last Post | Replies |
|
| datagridboolcolumn | 30 Aug 2004 02:32 GMT | 5 |
I have a DataGrid with a DataGridBoolColumn(checkbox) column bind to a DataSet, mapping source type is a SQL bit data type. I want to save the changes(checked or unchecked)
|
| Binding to a dropdownlist in a datagrid | 28 Aug 2004 21:44 GMT | 1 |
Ok so i've added a ddl to a datagrid in vs.net using the template controls provide in the ide. How then do I bind that ddl to a field in an access database. Incidently, by binding the control, that means it should drop-down all values stored in each record or can I limit the ...
|
| Bind collection to grid question | 27 Aug 2004 19:51 GMT | 1 |
I have a collection of users that i want to bind to a grid. This works fine if i just set the datasource property of the grid to my collection. But, the columns are not in the order i want them and i dont want to
|
| Binding to a dataset created asynchronously | 27 Aug 2004 19:47 GMT | 1 |
Without to many boring details. What I am trying to do is return a dataset object from a funtion called asynchronously. Then use that dataset as the datasource for a datagrid. Alright here is the boring details anyway just in case you want them.
|
| urgent:custom databinding | 27 Aug 2004 13:57 GMT | 1 |
Hi Gurus, While binding a control to a datatable I have to create a Binding object and can specify only three properties, namely: the Property Name, data source and data memeber. I have many controls on my form and each of this control
|
| Re-databinding with new DataSet object... | 25 Aug 2004 11:52 GMT | 1 |
Every time my form is opened, it is given a brand new DataSet object. This means that I need to realign all of my data bindings to a new object each time the form is opened. Unfortunately the ControlBindingsCollection indexer is readonly, as is all
|
| DataGrid problem. | 24 Aug 2004 14:59 GMT | 6 |
I have a simple datagrid on a form, bound to a database. The dataset that the datagrid is bound to is initialized as follows: dsBankVerbindungen1.Clear(); oleDbDataAdapter7.SelectCommand.Parameters["KTADNO"].Value = currentRecord;
|
| Generate windows vb.NET controls from a SQL Script | 23 Aug 2004 22:17 GMT | 1 |
I developed a small application that could be very useful for Component One. It generates the code to create a windows form from a SQL Script automatically and very beautiful. All the controls are Component One
|
| Binding objects that contain other objects | 23 Aug 2004 12:40 GMT | 2 |
Is it possible to bind an object that contains other objects to a datagrid. For example if I have a person object which exposes as a property an address object, is it possible to bind this to a datagrid, say the name property of the person object and the city property within the ...
|
| How to make the binding active? | 23 Aug 2004 10:12 GMT | 2 |
I have a form with a TabControl with two TabPages and a TextBox control on each TabPage. Each of the TextBoxes are bound to a datasource like TextBox1.DataBindings.Add("Text", MyObject, "FirstName"). The problem is that the binding of the TextBox on the *second* TabPage is not ...
|
| Updating textbox and underlying currentrow.column at the same time ? | 22 Aug 2004 14:11 GMT | 2 |
I have a windows forms which has 2 editor controls.. A text box and a Combo MyTextBox.Databindings.Add New Binding("value", "dsOrders", "Orders.ContactName") MyCombo.Databindings.Add New Binding("value", "dsOrders",
|
| combobox data binding | 21 Aug 2004 07:26 GMT | 1 |
I tryied to bind a dataview to a combobox, but at design time I couldn't. The combo box has a complex binding so, how can i bind to a dataview!! Any help is very apreciated
|
| refresh combobox bounded on dataset | 20 Aug 2004 20:17 GMT | 1 |
my combobox(cbo_Bezeichnung) is displaying data from tbl_NCC_Gegenstaende. Now if i insert a new record in this table and i want to refresh my combobox with this new added record is displaying with the other records, too. How can i do it. It is very urgent.
|
| Reference Assembly in GAC | 20 Aug 2004 16:43 GMT | 2 |
I have created an assembly that I want to install in the GAC. I have created a Strong-Name for the assembly and then used the AssemblyKeyFileAttribute to point to the snk file. I then dragged the assembly from explorer into the GAC and it was placed in the GAC ok.
|
| Bind TextBox to RowError or ColumnError | 19 Aug 2004 23:36 GMT | 1 |
I have a winform app using strongly typed datasets, and I'm trying to display errors in a column or single row without using a DataGrid, while writing a minimum of code. I am using TextBox and ComboBox controls to display one row at a time rather than a grid, and I already have ...
|