I am writing in c# with Visual Studio 2003. I am creating
a form that shows one record from a Dataset that is
populated with only one record from SQL Server 2000. I am
using bound controls, both text boxes and Combo Boxes
(populated successfuly from same data source).
When I use the fill command for the SQLDataAdaptor I can
get the data by querying the dataset but the controls on
the form do not show the data. If I set a combo box to
visible = false and then set it to true the data shows in
the combo box, but I can't find any way to view the data
for the text boxes.
The text boxes are bound to the Text property and the
combo boxes are bound to ValueMember and DisplayMember
properties. This form was working OK until recently and
the only thig I can remember changing is writing a couple
of routines that changes the Text property of some of the
text boxes, but these are only called after a button is
clickes and this problem occurs as soon as the form is
loaded.
Any ideas would be appreciated as this is confusing me
completely.
Paul