Gerbers404
Programmer
Hi there, I am getting a Run-time Error '3219' - Invalid Operation Error in the following code.
Private Sub JN_AfterUpdate()
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("tblSpecCondCurrent", dbOpenTable)
rs.Index = "Cond_ID"
rs.Seek "=", Me.Cond_ID
Me.Bookmark = rs.Bookmark
Me.Volume.Visible = True
End Sub
I get the error as I try to set the recordset. Any Ideas?
Thanks!
Gerbers404
Private Sub JN_AfterUpdate()
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("tblSpecCondCurrent", dbOpenTable)
rs.Index = "Cond_ID"
rs.Seek "=", Me.Cond_ID
Me.Bookmark = rs.Bookmark
Me.Volume.Visible = True
End Sub
I get the error as I try to set the recordset. Any Ideas?
Thanks!
Gerbers404