pullingteeth
Programmer
Hello, I'm attempting to open MS Access using some EXTRA Basic commands:
Declare Function ShowWindow Lib "User" (ByVal hWnd As Integer, ByVal nCmdShow As Integer) As Integer
Declare Function FindWindow Lib "User" (ByVal szClass$, ByVal lpsz As Long) as Integer
...
Hwnd% = FindWindow("hWndAccessApp",0)
x% = ShowWindow(Hwnd%,1)
I'm unsure of two things: should Lib be "User" or "User.exe", and what is the name of MS Access's window?
Thanks!
Declare Function ShowWindow Lib "User" (ByVal hWnd As Integer, ByVal nCmdShow As Integer) As Integer
Declare Function FindWindow Lib "User" (ByVal szClass$, ByVal lpsz As Long) as Integer
...
Hwnd% = FindWindow("hWndAccessApp",0)
x% = ShowWindow(Hwnd%,1)
I'm unsure of two things: should Lib be "User" or "User.exe", and what is the name of MS Access's window?
Thanks!