Advertisement
Advertisement
| 04.18.2008 at 12:00AM PDT, ID: 23333384 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: |
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Private Sub Form_Open(Cancel As Integer)
Dim lngReturn As Long
lngReturn = ShowWindow(Application.hWndAccessApp, SW_HIDE)
End Sub
|