- Home
·
- Encryption
·
- Set Date Termination of a Program Example: Program runs until the day is 11/25/2005 then it termina
Set Date Termination of a Program Example: Program runs until the day is 11/25/2005 then it termina
Set Date Termination of a Program Example: Program runs until the day is 11/25/2005 then it terminates.
API Declarations
Join my forums at http://warp3dindustries.com if you want to learn more!
Rate Set Date Termination of a Program Example: Program runs until the day is 11/25/2005 then it termina
(2(2 Vote))
'Coded By Warpboy
Rem Email: [email protected] or [email protected]
Rem Website: Warp3dIndustries.Com
Rem This can be used for trial versions of your program etc...
'You need two TEXTBOXES & a TIMER with and interval of 1000
Private Sub Form_Load()
Text2.Text = "11/28/2005" 'Date on which to terminate Application
Text1.Text = Date
If Text1.Text = Text2.Text Then
End
Else
MsgBox ("Timed Termination") 'Put what you want in here
End If
End Sub
Private Sub Timer1_Timer()
Text1.Text = "Date"
End Sub
Set Date Termination of a Program Example: Program runs until the day is 11/25/2005 then it termina Comments
No comments yet — be the first to post one!
Post a Comment