G
Guest
I have no problen using DoCmd.SetWarnings False to suppress warnings for the following kind of delete:
DoCmd.RunSQL ("DELETE FROM someTable WHERE ID = 5")
but not for this kind of delete:
DoCmd.RunCommand acCmdDeleteRecord
Is this normal? If so, how can I suppress warnings for the latter kind of delete?
Thanks in advance to all who deign to help!
DoCmd.RunSQL ("DELETE FROM someTable WHERE ID = 5")
but not for this kind of delete:
DoCmd.RunCommand acCmdDeleteRecord
Is this normal? If so, how can I suppress warnings for the latter kind of delete?
Thanks in advance to all who deign to help!