Link to home
Start Free TrialLog in
Avatar of DPPro
DPPro

asked on

dbCombo and Data Control

I know the answer is probably in paq but it's worth the points to not search all day. My question is.....
How do I make whatever I select from my dbCombo Dropdown the current record in my data control? VB5
Avatar of Dalin
Dalin


DPPro,
In the dbCombo's Change event, add:
dataControlName.Recordset.FindFirst "YourFieldName = " & dbCombo.Text
Any problems let me know.
Regards
Dalin

Avatar of DPPro

ASKER

This didn't work.
DPPro,
Explain how you set your dbcombo? posibly post your code.
Regards
ASKER CERTIFIED SOLUTION
Avatar of Dalin
Dalin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial