Hallo zusammen, ich habe den unter Access angegebenen Vorschlag zum Ausblenden von Access ausprobiert. Formular geht auf und Access (Hauptfenster) verschwindet, super so wollte ich es, aber, wenn ich ein weiteres Formular über das Hauptformular aufrufe, ist alles weg. Access nur noch über Taskmanager zu beenden. Info: Alle Formulare stehen auf Popup „ja“.
Habe folgenden Code benutzt:
Const SW_HIDE = 0
'in A00 ist dazu noch nötig:
Const SW_NORMAL = 1
Private Declare Function ShowWindow Lib „user32“ _
(ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Private Sub Form_Load()
Dim hWindow As Long
Dim nResult As Long
Dim nCmdShow As Long
hWindow = Application.hWndAccessApp
nCmdShow = SW_HIDE
nResult = ShowWindow(ByVal hWindow, ByVal nCmdShow)
Call ShowWindow(Me.hwnd, SW_NORMAL)
End Sub
Vielen Dank schon einmal !!!
Gruß
Thomas
P.S. Ich habe Access 2007