' zunächst die benötigten API-Deklarationen
Private Declare Function SetWindowPos Lib "user32" _
Alias "SetWindowPos" (ByVal hwnd As Long, _
ByVal hWndInsertAfter As Long, ByVal x As Long, _
ByVal y As Long, ByVal cx As Long, _
ByVal cy As Long, ByVal wFlags As Long) As Long
Private Const HWND_TOPMOST = -1
Private Const HWND_NOTOPMOST = -2
Private Const SWP_NOMOVE = &H2
Private Const SWP_NOSIZE = &H1
' Fenster in den Vordergrund setzen
Public Sub FormOnTop(ByVal hWnd As Long, _
ByVal OnTop As Boolean)
If OnTop Then
' immer im Vordergrund
SetWindowPos hwnd, HWND_TOPMOST, 0, 0, 0, 0, _
SWP_NOMOVE Or SWP_NOSIZE
Else
' normal
SetWindowPos hwnd, HWND_NOTOPMOST, 0, 0, 0, 0, _
SWP_NOMOVE Or SWP_NOSIZE
End If
End Sub
Übergeben Sie der Prozedur das Handle des Fensters und setzen für OnTop den Wert True, wenn das Fenster immer im Vordergrund angezeigt werden soll. Um das Fenster wieder normal anzuzeigen, rufen Sie die Prozedur erneut auf und setzen für OnTop den Wert False.
______________________________________________________________
SecureCrew::UNIX / Linux Security, Coding and more..
SecureCrew.net