Click to See Complete Forum and Search --> : How can I make my dialog box be "always on top"?


Andy Pike
December 3rd, 1998, 05:00 AM
I've got a small app (vb 5.0) and I would like it to be the top window - "always on top"


Any ideas


Cheers Andy Pike

T.S.Lee
December 3rd, 1998, 07:02 PM
The following sample shows top-most-window


Hope this helps.


============================================================================

Private Const HWND_TOPMOST = -1

Private Const SWP_NOMOVE = &H2

Private Const SWP_NOSIZE = &H1


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 Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE + SWP_NOSIZE

End Sub

=============================================================================