Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Access (https://www.askmehelpdesk.com/forumdisplay.php?f=441)
-   -   Setting trial Version Usage Time (https://www.askmehelpdesk.com/showthread.php?t=191440)

  • Mar 5, 2008, 02:19 PM
    opekms
    Setting trial Version Usage Time
    I have developed an Application with Access 2003. I would to give the trial version out but it should automatically go of within 90 days and request for registration. I need help to solve this issue.
  • Mar 5, 2008, 04:48 PM
    ScottGem
    First Access is not very secure. Second, I'm not a fan of timed trials. The way I handle it is to limit the number of records that the main table can handle. In the Before Insert event of the form use code like:

    If Dcount("*","Tablename") >10 Then
    MsgBox "Trial version cannot exceed 10 records. Please register", VbOKOnly
    Me.Undo
    End If

  • All times are GMT -7. The time now is 02:47 PM.