A have a form that isn't based on a query. Purely cosmetic. Within this form I have a form that is a list of clients and their details. (A bit like a datasheet)
The list is now very long.
I have a combo box on the main form. When I select a client from the list I would like to be able to jump to the specific record in the subform list.
My knowledge of code is almost nill but am trying the following.
Private Sub Combo24_AfterUpdate()
DoCmd.GoToControl ("ClientListF"
DoCmd.GoToRecord , , acFirst, ("Client Id"
= Forms("ClientMainF"
("Combo24"
End Sub
This is not erroring but it doesn't work.
Can any one help?
Wayne
The list is now very long.
I have a combo box on the main form. When I select a client from the list I would like to be able to jump to the specific record in the subform list.
My knowledge of code is almost nill but am trying the following.
Private Sub Combo24_AfterUpdate()
DoCmd.GoToControl ("ClientListF"
DoCmd.GoToRecord , , acFirst, ("Client Id"
End Sub
This is not erroring but it doesn't work.
Can any one help?
Wayne