Make Forms Stay on Top

Make Forms Stay on Top

To set a form to be always on top, use the subroutine listed here.Pass it the hWnd property of the form you want to float. The OnTop parameteris used to toggle the attribute. If True, floating is turned on; if False,the form will not float.

 Declare Sub SetWindowPos Lib "User" _ (ByVal hWnd As Integer, _ ByVal hWndInsertAfter As Integer, _ ByVal X As Integer, ByVal Y As Integer, _ ByVal cx As Integer, ByVal cy As Integer, _ ByVal wFlags As Integer) Global Const SWP_NOSIZE = &H1 Global Const SWP_NOMOVE = &H2 Global Const HWND_TOPMOST = -1 Global Const HWND_NOTOPMOST = -2 Sub FormOnTop (hWnd%, OnTop%) If OnTop Then Call SetWindowPos(hWnd, HWND_TOPMOST, 0, _ 0, 0, 0, SWP_NOSIZE Or SWP_NOMOVE) Else Call SetWindowPos(hWnd, HWND_NOTOPMOST, 0, _ 0, 0, 0, SWP_NOSIZE Or SWP_NOMOVE) End If End Sub 
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved