:mad: :mad: :mad: :mad: :mad:
How do you get your form to be 'always on top'
:confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused:
Printable View
:mad: :mad: :mad: :mad: :mad:
How do you get your form to be 'always on top'
:confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused:
Try this:
Code:Private Declare Function SetWindowPos _
Lib "user32" (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 Sub Form_Load()
SetWindowPos hwnd, -1, 0, 0, 0, 0, 3
End Sub
yourform.zorder