T
Tom
Hi
I'd like to open a new form. After that the record with the ID # 4 should be
selected. I tried to do it with the foowing script, but it fails.
Dim f As Form
DoCmd.OpenForm "F_Test"
Set f = Forms!F_Test
f.RecordsetClone.FindFirst "ID=4"
f.Bookmark = f.RecordsetClone.Bookmark
What am I doing wrong?
Tom
I'd like to open a new form. After that the record with the ID # 4 should be
selected. I tried to do it with the foowing script, but it fails.
Dim f As Form
DoCmd.OpenForm "F_Test"
Set f = Forms!F_Test
f.RecordsetClone.FindFirst "ID=4"
f.Bookmark = f.RecordsetClone.Bookmark
What am I doing wrong?
Tom