Hi,
I am having some issues with 32 and 64 bit systems and error messages.
I upgraded to 64bit and now it doesn't work.
I have an autoexec run when the program is open where is calls :
Here is the code:
At the top of that module, I have this too....
My question is... How do I get this to work for a 64bit system?
I am having some issues with 32 and 64 bit systems and error messages.
I upgraded to 64bit and now it doesn't work.
I have an autoexec run when the program is open where is calls :
Code:
Function InitApplication()
Code:
Function InitApplication() Dim c As CloseCommand Set c = New CloseCommand 'Disable Close menu. c.Enabled = False End Function
Code:
Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, _ ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long) Private Const KEYEVENTF_KEYUP = &H2 Private Declare Function GetSystemMenu Lib "user32" (ByVal hwnd As Long, _ ByVal bRevert As Long) As Long
Comment