J
James T
Access 2000
Using the wizard to put a button on a form to delete the
current record (code on click), I am getting a dialog
box "No Current Record" and the record shows up as
#Deleted.
The strange thing is that this happens on my machine, but
if I go to a co workers computer, it works fine.
Any help appreciated.
James
Private Sub Command27_Click()
On Error GoTo Err_Command27_Click
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, ,
acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 6, ,
acMenuVer70
Exit_Command27_Click:
Exit Sub
Err_Command27_Click:
MsgBox Err.Description
Resume Exit_Command27_Click
End Sub
Using the wizard to put a button on a form to delete the
current record (code on click), I am getting a dialog
box "No Current Record" and the record shows up as
#Deleted.
The strange thing is that this happens on my machine, but
if I go to a co workers computer, it works fine.
Any help appreciated.
James
Private Sub Command27_Click()
On Error GoTo Err_Command27_Click
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, ,
acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 6, ,
acMenuVer70
Exit_Command27_Click:
Exit Sub
Err_Command27_Click:
MsgBox Err.Description
Resume Exit_Command27_Click
End Sub