5 pts.
 MS Access DATABASE and combobox in VB6.0
hellooo
plz i need helpĀ 
i am new to VB6.0 and i've learned alot
now i have a database in MS Access
and i want to create a combobox named (Combo1) that will be populated from the field (Name) in table (Customer) in the database (weighbridge.mdb) and then when i choose a name in the combobox i want it to populate other 3 text boxes named (text1, text2, text3) with the fields ( Address, Email, Telephone) respectively
i am totally new in DATABASE with VB6.0
so please provide me with everything i need to do in VB i prefer using ADO control not programming if possible and please tell me how to connect to that database and where to please any provided piece of code
thank u very very much in advance


Software/Hardware used:
Visual Basic 6.0
ASKED: June 23, 2010  8:01 AM
UPDATED: June 23, 2010  1:06 PM

Answer Wiki:
'Use this code
On Error Resume Next
Do While Not Form6.Adodc1.Recordset.EOF = True
Combo1.AddItem Form6.Adodc1.Recordset.Fields("REF_ID")
Adodc1.Recordset.MoveNext
Loop
'End If
Last Wiki Answer Submitted:  October 12, 2012  9:13 am  by  Mshonga   15 pts.
All Answer Wiki Contributors:  Mshonga   15 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _