hi
I just migrated to ms access 2007 from ms access 2003. And I have a problem in deleting records.
I also created a new ribbon in the new ms access 2007. I would like to know what is the code use so that I could delete the records. Here is what I got in my basRibbonCallbacks
Sub OnActionButton(control As IRibbonControl)
Select Case control.Id
Case "btnOpenFormular"
DoCmd.OpenForm "FormName"
Case "btnCloseFrmEingabe"
DoCmd.Close acReport
Case "btnDelete"
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70 DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
End Select
End Sub
is this correct? I tried this and its still not working.
Thanks