Hi All
I am looking at setting the expiry date on my project and found lots of useful info and codes to do it.
The only problem is that I want to be able to unlock my project with a password even if it has expired , I have searched a lot for this approach but didn't found nothing.
So What I was thinking maby something like this:
Private Sub Workbook_Open()
If Date >= "09/26/08" Then
MsgBox "Trial period has expired.", vbOKOnly, "Trial Period Has Expired"
UserForm1.Show 'this userform contains 1 texbox where password must be provided
ThisWorkbook.Close (False)
End If
End Sub
and this is where I am stuck... I need a code that would unlock the traial version into full workbook so maby something to check password in textbox matches the one in the code, not sure...
Thank you in advance for your help
Dan
Bookmarks