VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

BEGGINER Form On Top

Demian Net  (14 Submissions)   Custom Controls/Forms/Menus   Visual Basic 3.0   Beginner   Wed 3rd February 2021

Puts Your form on top.

API Declarations
'Put this in a module
Public Sub FormOnTop(FormName As Form)
Call SetWindowPos(FormName.hwnd, HWND_TOPMOST, 0&, 0&, 0&, 0&, FLAGS)
End Sub
Public Sub FormNotOnTop(FormName As Form)
Call SetWindowPos(FormName.hwnd, HWND_NOTOPMOST, 0&, 0&, 0&, 0&, FLAGS)
End Sub

Rate BEGGINER Form On Top (3(3 Vote))
BEGGINER Form On Top.bas

BEGGINER Form On Top Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters