I have a recordset generated totally in code. I want to bind the data to
objects on a form. I don't want to bind each textbox and combobox manually
in code (too many of them!). Don't want to use only datacontrols - too much
overhead and performance loss with each datacontrol making it's own
connections etc.
I am feeding the coded recordset to a datacontrol which then handles binding
to the form controls. I am feeding the recordset to the data control by
setting (in code for run time) the datacontrol's recordsource property to my
code recordset.
adodc1.recordsource = rs1
From the books and help etc. it looks like this should work. It only kinda
works for me. Labels and textboxes do correctly populate their data, but my
comboboxes are empty.
Any help?
Thanks,
Shirley