A family of Microsoft relational database management systems designed for ease of use.
Look for a line of code near the top of a module that looks like this:
Declare Function GetTickCount Lib "kernel32.dll" () As Long
The word Declare might be preceded by Public or Private.
Insert the word PtrSafe between Declare and Function:
Declare PtrSafe Function GetTickCount Lib "kernel32.dll" () As Long