baitmaster
Well-known Member
- Joined
- Mar 12, 2009
- Messages
- 2,042
I have created a marvelous new system that uses a single Access database table (2003: .mdb format) to hold data "behind the scenes", with an Excel user interface. The interface is set up using DAO object library 3.6
some example code:
there is then heaps of SQL etc, and other code to query and update the data table
The system works perfectly (sort of..!), and is only days away from launch. However, I have just found out that the system will actually be used from Windows 7 (64-bit) PCs running Office 2010. The DAO object library does not exist in this version, and is apparently unavailable for the 64 bit system
Please suggest, what is the best way to reconfigure this system? I can rewrite the database into a different format, but dont want to rewrite all my SQL etc that is written into the VBA code... and I have no time to do this
Thanks once again for any help
some example code:
Code:
Dim dB As DAO.Database: Set dB = OpenDatabase(strDBname)
Dim rsTimesheet As DAO.Recordset: Set rsTimesheet = dB.OpenRecordset(strTBLtimesheets, dbOpenTable)
The system works perfectly (sort of..!), and is only days away from launch. However, I have just found out that the system will actually be used from Windows 7 (64-bit) PCs running Office 2010. The DAO object library does not exist in this version, and is apparently unavailable for the 64 bit system
Please suggest, what is the best way to reconfigure this system? I can rewrite the database into a different format, but dont want to rewrite all my SQL etc that is written into the VBA code... and I have no time to do this
Thanks once again for any help