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 |
Const HWND_TOPMOST = -1 |
Private Sub FORM_Load() |
SetWindowPos Me .hwnd, HWND_TOPMOST, Me .Left / Screen.TwipsPerPixelX _ |
, Me .Top \ Screen.TwipsPerPixelY, Me .Width \ Screen.TwipsPerPixelX, _ |
Me .Height \ Screen.TwipsPerPixelY, 0 |
End Sub |