all groups > dotnet windows forms databinding > november 2004 > threads for november 8 - 14, 2004
Filter by week: 1 2 3 4 5
Datagrid does not reflect changes to bound dataset
Posted by Peter Kenyon at 11/12/2004 12:18:28 PM
Hi,
I am using a datagrid to display a few columns from a dataset and a "detail"
form for editing, which appears after double-clicking a row in the grid.
After the user finishes editing an item with the detail form, the changes he
has made do not show up in the datagrid even though both are... more >>
Parameter on Stored Procedure
Posted by Gis at 11/12/2004 3:56:01 AM
Hi,
I'm using a data adapter daReadAdmin which is delcared like this:
SqlDataAdapter daReadAdmin = new SqlDataAdapter("p_ReadAdmin",
strConnection);
Where p_ReadAdmin is a parametrized Stored procedure in SQL Server then the
following code states:
daReadAdmin.SelectCommand.CommandTex... more >>
Designer/properties databinding, how???
Posted by Julie at 11/11/2004 1:10:35 PM
I'm trying to use data bindings through the control designer properties, and
getting
nowhere at light-speed. The online help for data bindings is virtually useless
as a tutorial on the subject, and I haven't been able to locate anything
through Google.
I've set up data bindings manually, and... more >>
How to update an IBindingList in a separate thread?
Posted by juliensellgren NO[at]SPAM hotmail.com at 11/9/2004 3:49:24 PM
I have a DataGrid bound to a custom collection that implements
IBindingList. It is well known that updates to windows forms widgets
must be done on the same thread as the form. Here is the kicker: I
would like to have a process in a separate thread that makes updates
to the collection. Ideally w... more >>
DataRowView binding
Posted by Mauricio Magni at 11/8/2004 11:41:29 AM
Hello
I have a form that shows the values of a DataRowView. I bind the controls to
columns of this DataRowView.
Almost everything works right, but, there is something that doesn't work as
I expected:
One of the controls is a ComboBox that lookups data in another table. If I
change the value ... more >>
With Relationships and filter
Posted by Gis at 11/8/2004 4:54:03 AM
Hello, I'm trying to bind table Employee already on a dataset DsName. But
Employee references to other tables PersonnelGroup and PersonnelStatus. I
want cbobox cboName only to show Employees whose Status = 'Current' and Group
= 'ATBDE'
Here's part of the code:
Dim employeePersonnelGroupRe... more >>
|