G
gmazza via AccessMonster.com
Hi there,
I keep getting this error after I update a record, then try moving to another
record.
When I debug, the error comes up where I am setting my modifier date field on
the form
to a certain value in the forms BeforeUpdate event. Is there somewhere else I
can set
this date to prevent this error?
I tried putting it in the AfterUpdate event but then I get this error in my
combo box after update:
You cancelled the previous operation.
With this code in it:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[MovieID] = " & str(Nz(Me![cboSelectMovie], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
The error was on the last line.
I was suggested my database might be corrupt but I went through setting up a
new database with just this form in it and it still does the same thing.
Any help is appreciated!
I keep getting this error after I update a record, then try moving to another
record.
When I debug, the error comes up where I am setting my modifier date field on
the form
to a certain value in the forms BeforeUpdate event. Is there somewhere else I
can set
this date to prevent this error?
I tried putting it in the AfterUpdate event but then I get this error in my
combo box after update:
You cancelled the previous operation.
With this code in it:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[MovieID] = " & str(Nz(Me![cboSelectMovie], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
The error was on the last line.
I was suggested my database might be corrupt but I went through setting up a
new database with just this form in it and it still does the same thing.
Any help is appreciated!