J
James C.
Hoping someone can help....
I have a main table that has an auto number field. On my form there is a
dropdown box at the top that queries this field in ascending order. When my
user selects the record id (auto number) then it populates all of the bound
fields on the form. I keep receiving an error. I never have this problem when
linking any other field type.
The afterupdate code that runs is, where AcctLU is the dropdown and Acct# is
the bound Auto number field in my table and on my form:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Acct#] = '" & Me![AcctLU] & "'"
Me.Bookmark = rs.Bookmark
Any help would be appreciated.
I have a main table that has an auto number field. On my form there is a
dropdown box at the top that queries this field in ascending order. When my
user selects the record id (auto number) then it populates all of the bound
fields on the form. I keep receiving an error. I never have this problem when
linking any other field type.
The afterupdate code that runs is, where AcctLU is the dropdown and Acct# is
the bound Auto number field in my table and on my form:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Acct#] = '" & Me![AcctLU] & "'"
Me.Bookmark = rs.Bookmark
Any help would be appreciated.