Link to home
Start Free TrialLog in
Avatar of João serras-pereira
João serras-pereiraFlag for Portugal

asked on

hide the window in ms/access

Hi
I want to hide the MS/ACCESS Window on my app and found a routine on fms that looks doing so

it however is 32 bit and I am running 64 bit.

the statements in cause are:


Private Declare Function IsWindowVisible Lib "user32" (ByVal hwnd As Long) As Long
Dim dwReturn As Long


Private Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, _
     ByVal nCmdShow As Long) As Long

can anyone tell me how to move to 64 bit? or let me know a simple manner to hide the Window?
/joao
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of João serras-pereira

ASKER

Thanks!