I write this code down blow to disable my form from load on certain date on the month and is working very fine.
I would like to know how random password work. I want instead of chaging the date every month. use password I give it to the user let the application working for the next month and etc.
Private Sub Form_Load()
If OrderDate >= #10/20/2002# Then
MsgBox "This Program Expired, " & vbCrLf & "Please Call (000)000-0000.", vbExclamation, "MC-12"
DoCmd.Quit acQuitPrompt
End If
End Sub
I would like to know how random password work. I want instead of chaging the date every month. use password I give it to the user let the application working for the next month and etc.
Private Sub Form_Load()
If OrderDate >= #10/20/2002# Then
MsgBox "This Program Expired, " & vbCrLf & "Please Call (000)000-0000.", vbExclamation, "MC-12"
DoCmd.Quit acQuitPrompt
End If
End Sub