S
Sue
I have done something and I am clueless. Please be aware
I am self-taught.
I get the above message on my form when I try to select a
record via combo box. My code:
*******************************************************
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
Forms![frm Main]![InvoiceNumber].Requery
Forms![frm Main].Requery
rs.FindFirst "[InvoiceNumber] = " & Me!
[InvoiceNumber] & ""
Me.Bookmark = rs.Bookmark
*******************************************************
This began, seemingly, all of a sudden. I cannot seem to
make it go away. My tables are referential integrity
enforced, cascading deletes, and indexes.
Why has this started to occur? HELP only speaks to
indexes, but it worked moments before.
Will someone aid me please?
Thanks.
Sue
I am self-taught.
I get the above message on my form when I try to select a
record via combo box. My code:
*******************************************************
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
Forms![frm Main]![InvoiceNumber].Requery
Forms![frm Main].Requery
rs.FindFirst "[InvoiceNumber] = " & Me!
[InvoiceNumber] & ""
Me.Bookmark = rs.Bookmark
*******************************************************
This began, seemingly, all of a sudden. I cannot seem to
make it go away. My tables are referential integrity
enforced, cascading deletes, and indexes.
Why has this started to occur? HELP only speaks to
indexes, but it worked moments before.
Will someone aid me please?
Thanks.
Sue