Help with Forms and DataSet

  • Thread starter Thread starter John Cosmas
  • Start date Start date
J

John Cosmas

Hello;

I'm relatively new to .NET and I'm trying to figure out something rather
trivial, but can't seem to find the right documentation. I have a form that
I have bound to a dataset. I placed a drop down combo on the top of the
form. When I select an item from that list, I would like the corresponding
fields/columns to show on the rest of the form. The corresponding columns
all originate from the same record selected in the combobox which is bound
to a table in the dataset lying on the form. So, as you can see, I've
gotten my basic structure on the form all setup correctly - form bound to
dataset, combobox bound to dataset.table and fields bound to
dataset.table.column(s). Please direct me toward a working example.

TIA
John
 
John:

The following KB article may be a good reference, if not exactly a working
sample.

http://support.microsoft.com/default.aspx?scid=kb;en-us;821763

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


Hello;

I'm relatively new to .NET and I'm trying to figure out something rather
trivial, but can't seem to find the right documentation. I have a form that
I have bound to a dataset. I placed a drop down combo on the top of the
form. When I select an item from that list, I would like the corresponding
fields/columns to show on the rest of the form. The corresponding columns
all originate from the same record selected in the combobox which is bound
to a table in the dataset lying on the form. So, as you can see, I've
gotten my basic structure on the form all setup correctly - form bound to
dataset, combobox bound to dataset.table and fields bound to
dataset.table.column(s). Please direct me toward a working example.

TIA
John
 
Back
Top