all groups > dotnet windows forms databinding > august 2004 > threads for august 15 - 21, 2004
Filter by week: 1 2 3 4 5
Updating textbox and underlying currentrow.column at the same time ?
Posted by Fred Morin at 8/21/2004 8:05:26 PM
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",
"Orders.CompanyId")
The Textbox is bound to the Contact Name and the Co... more >>
combobox data binding
Posted by Fanor at 8/20/2004 11:18:44 AM
Hi guys,
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
... more >>
refresh combobox bounded on dataset
Posted by b_nursel NO[at]SPAM yahoo.de at 8/20/2004 7:19:56 AM
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.
My source code as follows:
SqlCeC... more >>
Bind TextBox to RowError or ColumnError
Posted by Ed Henn at 8/19/2004 10:45:17 AM
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 code
that sets C... more >>
DataSet.HasChanges() always returns false even though there are changes
Posted by mzam at 8/19/2004 9:24:08 AM
Hi All,
I have a set of textboxes bound to a typed dataset (ds1). This dataset
contains one table which contains only one record.
This is an example on how I do the binding for the textboxes:
txtDescription.DataBindings.Add(new Binding("Text", ds1.ShareClass,
"Name"));
When I am about ... more >>
How to make the binding active?
Posted by Thomas Hansen at 8/18/2004 11:00:05 AM
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 active =
imm... more >>
DataGrid problem.
Posted by Integer Software at 8/17/2004 2:47:02 PM
Hi.
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;
//oleDbDataAdapter7.DeleteCommand.Parameters["KTADNO"].V... more >>
Reference Assembly in GAC
Posted by Steve Amey at 8/17/2004 9:54:05 AM
Hi all
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.
I then go into my p... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
urgent:custom databinding
Posted by Ashish Sheth at 8/16/2004 12:28:53 PM
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
should be binded to the same column in the table but should ... more >>
ComboBox Databinding Problem with Text Property
Posted by Ryan Gregg at 8/16/2004 11:13:19 AM
Sorry for the cross posting, but I wasn't sure the best group to answer
this question.
I've been running my head into this bug for a while now, and I'm hoping
that someone out there has a good fix for it. It's a fairly simple bug
that really should have been caught previously, although I h... more >>
Generate windows vb.NET controls from a SQL Script
Posted by TiberianQs NO[at]SPAM yahoo.com at 8/15/2004 3:42:32 PM
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
Studio Input, (Input date, Textbox, NemricEdit, etc), all are
formatted and create... more >>
Binding objects that contain other objects
Posted by Dan at 8/15/2004 3:19:57 AM
Hi Everyone
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 ... more >>
|