View Single Post
Old 23-05-2005, 13:09   #2
Richard M
Inactive
 
Join Date: Jun 2003
Location: Los Angeles, CA
Age: 47
Posts: 6,343
Richard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze array
Richard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze arrayRichard M has a bronze array
Re: Excel and VBA, how to protect?

The problem here is that VB script is always uncompiled so anyone can view the source.
You could do something like:
Quote:
Dim StopWorking
StopWorking = "01/06/2005"
Dated = Datetime.Now()
If StopWorking <= Dated Then
Response.Write "Trial Expired!"
End If
Or something like that anyway (VB skills are not that good) but even then you'd still be able to look at the code and change the date.
Richard M is offline   Reply With Quote