I am getting an error for my app after running the setup on certain computers. The program gives the error Looking for object with CLSID: {....}. I have traced the error to parts of the program that use databases. All of the databases are using normal data controls. The databases were created by the visual data manger in Visual Basic and compacted as a 7.0 mdb. I was wondering if there were any necessary references I need to add to the project or is it just that I am not initializing the databases correctly? The error only occurs on certain computers, I believe ones that do not have Microsoft Access installed. When I first load up the main form I initialize the data controls in this manner:
Data1.DatabaseName = App.path & "\" & USER & "\apm.mdb"
Data1.RecordSource = "keytable"
Data2.DatabaseName = App.path & "\" & USER & "\gk.mdb"
Data2.RecordSource = "gatekeeper"
during the form load event
Hope this info helps. Thanks in advance.