Program Deactivation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • roycunderwood
    New Member
    • Feb 2008
    • 6

    Program Deactivation

    Hi everyone, I have a need to deactivate a msaccess app after a certain date (table lookup field). How can I modify which startup form based on date?

    Thanks !
  • janders468
    Recognized Expert New Member
    • Mar 2008
    • 112

    #2
    One way to do this, although it could it be defeated by someone who knew what they were doing, is create a function that is run from the autoexec macro. For Example
    Code:
    If Now > then SOMEDATE then
       docmd.openform "Relevant Form"
    Else
       docmd.openform "Other Form"
    end if

    Comment

    • roycunderwood
      New Member
      • Feb 2008
      • 6

      #3
      Well Thank you! That worked!

      Comment

      Working...