mark_jarman1
Registered User.
- Local time
- Today, 11:32
- Joined
- May 8, 2004
- Messages
- 10
Right i have a table called "Clock In" and another table called "Clock Out" i wish to have a button on a form so that when it is pressed it clears/deletes all the records in them tables. How can this be done?
i tried using this code but it didnt work
Cheers
Mark
i tried using this code but it didnt work
Code:
Dim strSQL As String
strSQL = "DELETE FROM Clock In"
DoCmd.RunSQL strSQL
strSQL = "DELETE FROM Clock Out"
DoCmd.RunSQL strSQL
Cheers
Mark