In access.. I am using this in the Form_Unload Event
VB Code:
  1. Access.CommandBars("Menu Bar").Reset
  2.     Access.CloseCurrentDatabase
  3.  
  4.     Access.Quit acQuitSaveNone 'Doesnt work
  5.     DoCmd.Quit acQuitSaveNone 'Doesnt work
it should close the whole app.. but its only closing the current db (from prev line)

any idea?
(there is no other code running after that)