Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling through Combo Box

Status
Not open for further replies.

jmob

Programmer
Jun 21, 2005
58
US
I have a form with a combo box on it, along with other fields. When selecting from the combo box, the rest of the corresponding fields update. But when scrolling through the other fields with the mouse scroller - the combo box does not update to match the rest of the fields. The data type in the combo box is a date.
Thanks.
 
Nevermind, I figured it out. For anyone interested: You put the same field as a textbox over the ComboBox. Then make sure you set the textBox focus on the AfterUpdate event of the combo box. You can't even tell a textBox is doing the work for you!
 
Hi jmob,
I allways use this little code to sync my combx

Private Sub Form_Current()
Combo492 = TableID
End Sub


Pampers.

You're never too young to learn
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top