coolcatkelso
Registered User.
- Local time
- Today, 15:39
- Joined
- Jan 5, 2009
- Messages
- 279
Hiya guys
I have a table in my database called tblDateFlagged which will flag 14 dates, after that the Dbase stops working.. This works perfect
I have added a button to the spalsh screen to (Unlock) the database
THe basis of this button is
Which works no problems, it deletes the table as it should
But there is also a Module file working with this, called basFirstRun
Is there a way I can also delete that file?
Also when the button is clicked, and I enter the serial number, I get the error saying its already open, easy to resolve just click END and click the button again and enter the serial.. It deletes this time.. Is there a way around this?
________
Montana medical marijuana dispensaries
I have a table in my database called tblDateFlagged which will flag 14 dates, after that the Dbase stops working.. This works perfect
I have added a button to the spalsh screen to (Unlock) the database
THe basis of this button is
Code:
If UCase(strInput) = "8MEH-REDSL-7ETEC-ULA8R-EAOKL-4EMBR-ACED" Then
DoCmd.RunSQL "DROP TABLE tblDateFlagged"
Else
MsgBox "Sorry wrong password."
End If
End Sub
Which works no problems, it deletes the table as it should
But there is also a Module file working with this, called basFirstRun
Is there a way I can also delete that file?
Also when the button is clicked, and I enter the serial number, I get the error saying its already open, easy to resolve just click END and click the button again and enter the serial.. It deletes this time.. Is there a way around this?
________
Montana medical marijuana dispensaries
Last edited: