A
Access User
I just added what I thought was going to be a 'Delete Record' cmd button to
my Access form. Here's the VBA the 'wizard' created:
Private Sub Command96_Click()
On Error GoTo Err_Command96_Click
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
Exit_Command96_Click:
Exit Sub
Err_Command96_Click:
MsgBox Err.Description
Resume Exit_Command96_Click
End Sub
Apart from making this pronging sound when I click it, it has no other effect.
Anyone know what's going on? I would've thought this'd be a piece of cake...
my Access form. Here's the VBA the 'wizard' created:
Private Sub Command96_Click()
On Error GoTo Err_Command96_Click
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
Exit_Command96_Click:
Exit Sub
Err_Command96_Click:
MsgBox Err.Description
Resume Exit_Command96_Click
End Sub
Apart from making this pronging sound when I click it, it has no other effect.
Anyone know what's going on? I would've thought this'd be a piece of cake...