Can somebody help me please!
I have two forms on my screen. One containing all the letters of the alphabet (in separate fields), and a second contains a list of names in alphabetical order. How do I jump to the first record in the second form whose first letter = the letter selected in the first form? I tried findrecord and gotorecord, but i always get an error
Private Sub voorletter_Click()
Dim reeksletter As String
reeksletter = Me!voorletter & "01"
Forms!keuzetitel.SetFocus
Forms!keuzetitel.FindRecord reeksletter, acAnywhere
End Sub
i get only an "appliction or object fault"
I have two forms on my screen. One containing all the letters of the alphabet (in separate fields), and a second contains a list of names in alphabetical order. How do I jump to the first record in the second form whose first letter = the letter selected in the first form? I tried findrecord and gotorecord, but i always get an error
Private Sub voorletter_Click()
Dim reeksletter As String
reeksletter = Me!voorletter & "01"
Forms!keuzetitel.SetFocus
Forms!keuzetitel.FindRecord reeksletter, acAnywhere
End Sub
i get only an "appliction or object fault"