Immediately shut down of DB via VBA

  • Thread starter Thread starter Milan
  • Start date Start date
M

Milan

Hello,

is it possible somehow to shut down the database application
immediately (via VBA), which means to jump all the code of close
events of all the opened forms?

Thanks in advance,

Milan.
 
Milan said:
is it possible somehow to shut down the database application
immediately (via VBA), which means to jump all the code of close
events of all the opened forms?


DoCmd.Quit is supposed do that, but check if your program
is designed to deal with having your class object cleared
and your global variables abruptly erased.
 
Back
Top