DanG
Registered User.
- Local time
- Yesterday, 20:54
- Joined
- Nov 4, 2004
- Messages
- 477
I am going to send a database to a Vendor with only names & addresse.
What I'd like to do is have it delete itself in 30 (or so) days. I am able to delete the tables, queries, forms and reports if I call them out but what I'd really like to do is just reference the database name and delete the whole thing at startup after 30 days.
Here is the hard way to do it code I have..
Function Tbomb()
If (Now() >= #6/23/2005 3:01:16 PM#) Then
DoCmd.DeleteObject acTable, "time"
End If
End Function
Any ideas?
What I'd like to do is have it delete itself in 30 (or so) days. I am able to delete the tables, queries, forms and reports if I call them out but what I'd really like to do is just reference the database name and delete the whole thing at startup after 30 days.
Here is the hard way to do it code I have..
Function Tbomb()
If (Now() >= #6/23/2005 3:01:16 PM#) Then
DoCmd.DeleteObject acTable, "time"
End If
End Function
Any ideas?