F
Frank Reichenbacher
I have a continuous form bound to a query that lists all of my customers. I
want a text box at the top in the Form Header to allow the user to quickly
point the form to an account quickly instead of forcing them to scroll
through 2000+ accounts even for a well-known account.
In the AfterUpdate event of the text box I have this:
Dim strCustFNUM As String
strCustFNUM = Me!CustFNUM
Me.RecordsetClone.FindFirst "[CustFNUM] = " & strCustFNUM
Me.Bookmark = Me.RecordsetClone.Bookmark
This doesn't work, the form Bookmark is stuck at the first displayed record.
Is this some property of a continuous form that I wasn't aware of? Do I have
to use a subform?
Frank
want a text box at the top in the Form Header to allow the user to quickly
point the form to an account quickly instead of forcing them to scroll
through 2000+ accounts even for a well-known account.
In the AfterUpdate event of the text box I have this:
Dim strCustFNUM As String
strCustFNUM = Me!CustFNUM
Me.RecordsetClone.FindFirst "[CustFNUM] = " & strCustFNUM
Me.Bookmark = Me.RecordsetClone.Bookmark
This doesn't work, the form Bookmark is stuck at the first displayed record.
Is this some property of a continuous form that I wasn't aware of? Do I have
to use a subform?
Frank