Start a new exe project and it should have a Form in it.

Go to the code section of the form and paste the following and run the project.

VB Code:
  1. Option Explicit
  2.  
  3. Private Declare Sub SetWindowPos Lib "user32" _
  4.    (ByVal hwnd As Long, _
  5.    ByVal hWndInsertAfter As Long, _
  6.    ByVal X As Long, _
  7.    ByVal Y As Long, _
  8.    ByVal cx As Long, _
  9.    ByVal cy As Long, _
  10.    ByVal wFlags As Long)
  11.  
  12. Private Const HWND_TOPMOST = -1
  13. Private Const SWP_NOSIZE = &H1
  14. Private Const SWP_NOMOVE = &H2
  15. Private Const SWP_NOACTIVATE = &H10
  16.  
  17. Private Declare Function ShowWindow Lib "user32" _
  18.    (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
  19.  
  20. Private Const SW_SHOWNOACTIVATE = 4
  21.  
  22. Private Sub Form_Load()
  23.    SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_NOMOVE Or SWP_NOSIZE
  24.    ShowWindow Me.hwnd, SW_SHOWNOACTIVATE
  25. End Sub