Forum Discussion
ManojK365
Feb 16, 2017Copper Contributor
How to convert Access 32 Bit Database to Access 64 Bit Database
How to convert 32 Database created with Access 2007 32 bit to Access 2016 64 bit? Manoj Kumar
Spengler1776
Feb 10, 2020Copper Contributor
ManojK365 I'm not sure if you had a compile issue with VBA or not, but I used https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/visual-basic-language-reference to solve my syntax issue. It turns out that the difference between my 32 bit and 64 bit database was PtrSafe after my Declare statements.
#If VBA7 Then
Declare PtrSafe Sub...
#Else
Declare Sub...
#EndIf
I hope this helps out.