C
Chris K
This is the opening code in my (start up) form
Private Sub Form_Load()
If Date - DateValue(Version.Caption) > 5 Then Quit
I've tried Quit, Docmd.Quit, End, Exit and in all cases it continues to
execute code grrrrrrrrrrrr until it finds an error in Form_Current procedure
and I dont want it to go that far - I just want it to stop, which I've also
tried by the way
btw, How can I switch errors On?
I understand that Resume signifies where/when the execution process can
continue but does this also switch errors back on? - it's not specifically
mentioned in the help files
I cant help but feel that errors are being suppressed (Resume Next style)
until it literally gets bogged down it cant possibly run
Private Sub Form_Load()
If Date - DateValue(Version.Caption) > 5 Then Quit
I've tried Quit, Docmd.Quit, End, Exit and in all cases it continues to
execute code grrrrrrrrrrrr until it finds an error in Form_Current procedure
and I dont want it to go that far - I just want it to stop, which I've also
tried by the way
btw, How can I switch errors On?
I understand that Resume signifies where/when the execution process can
continue but does this also switch errors back on? - it's not specifically
mentioned in the help files
I cant help but feel that errors are being suppressed (Resume Next style)
until it literally gets bogged down it cant possibly run