Click to See Complete Forum and Search --> : Combobox Click event and ADO


sonman
January 5th, 2000, 05:00 PM
I have 4 textboxes that are in a control array and a combobox. All these controls are filled with the first record from the access database when the
program first loads. I can move from one record to another with the control
but if the user drops down the combobox and selects and item, the textboxes
will not move to that record and display. Does anybody know how to do this
through code. (All my controls are bound to the database with code)

valkyrie
January 5th, 2000, 08:52 PM
Hi there...
Have you tried setting this,

txtSomething(0).Enabled = false
...
txtSomething(3).Enabled = false



in your Combobox_click() method?
Hope this helps...



____________________________________
The VB Bugs in my Life...

sonman
February 27th, 2000, 01:57 PM
Hey thanks. I got it.