I use the following DAO code to open a database
VB Code:
  1. DBEngine.SystemDB = GetWindowsDir() & "WIZARD.MDA"
  2.     DBEngine.DefaultUser = "MyUserName"
  3.     DBEngine.DefaultPassword = "MyPassword"
  4.     gsRWTSPath = App.Path & "\data\rwts.mdb"
  5.     Set gdbRWTS = Workspaces(0).OpenDatabase(gsRWTSPath)
After literally years of maintaining this application I'm suddenly getting error 3041 which says "Can't open a database created with a previous version of your application". What in the world is going on? (I can't find any reference to the 3041 error in help.)