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
Printable View
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
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
=============================================================================