Unconfigured Ad Widget

Collapse

Anúncio

Collapse
No announcement yet.

Ontop = Sempre Visivél [vb6]

Collapse
X
 
  • Filter
  • Tempo
  • Show
Clear All
new posts

  • Font Size
    #1

    Ontop = Sempre Visivél [vb6]

    'General
    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
    Sub AlwaysOnTop(FrmID As Form, OnTop As Integer)
    Const SWP_NOMOVE = 2
    Const SWP_NOSIZE = 1
    Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
    Const HWND_TOPMOST = -1
    Const HWND_NOTOPMOST = -2
    If OnTop = -1 Then
    OnTop = SetWindowPos(FrmID.hwnd, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)
    Else
    OnTop = SetWindowPos(FrmID.hwnd, HWND_NOTOPMOST, 0, 0, 0, 0, FLAGS)
    End If
    End Sub


    'Chamando a Função
    AlwaysOnTop Me, -1

    'Exemplo

    Private Sub Form_Load()
    AlwaysOnTop Me, -1
    End Sub
X
Working...
X