Hi all
How can i make the Dbcombo go to the require row of records when the user select a data inside the Dbcombo?
Any help and suggestion will be greatly appreciated
[Edited by CoMMiE on 10-01-2000 at 09:24 AM]
Printable View
Hi all
How can i make the Dbcombo go to the require row of records when the user select a data inside the Dbcombo?
Any help and suggestion will be greatly appreciated
[Edited by CoMMiE on 10-01-2000 at 09:24 AM]
let´consider the DBGRID is bound to a recordset called RECORDSET. (ADO) So we have
Private Sub DBCOMBO_Click()
RECORDSET.FIND DBCOMBO.ListField & " = " & DBCOMBO.Text
End Sub
that´s a way... maybe not that elegant, but it works
Thanks for the reply RAMOSF
Hi RAMOSF
I tried your code but i got an object error out of it whats wrong?