Xe tu , lo facil k es escribir 4 palabras en google y darle a buscar... nose porqe la gente prefiere escribir mucho mas en un foro y ademas esperar mas tiempo a las respuestas... de todos modos aki te paso el kodigo, pero buskar un pokito mas anda
Const HWND_TOPMOST = -1 'Pa qe este siempre visible
Const HWND_NOTOPMOST = -2
Const SWP_NOSIZE = &H1
Const SWP_NOMOVE = &H2
Const SWP_NOACTIVATE = &H10
Const SWP_SHOWWINDOW = &H40
Private Declare Sub 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)
Private Sub form_load()
SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOMOVE Or SWP_NOSIZE
End Sub