Ok I tried this code:

VB Code:
  1. Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, _
  2.   ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
  3. Private Const HWND_TOPMOST = -1
  4. Private Const HWND_NOTOPMOST = -2
  5. Private Const SWP_NOMOVE = &H2
  6. Private Const SWP_NOSIZE = &H1
  7.  
  8. Private Sub Form_Load()
  9. Form1.Visible = False
  10. End Sub
  11.  
  12. Private Sub Timer1_Timer()
  13. Form1.Visible = True
  14. Call SetWindowPos(Form1.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE)
  15. End Sub

And it showed up over other windows, but not the full screen game.