using either (vb2008 or vb2010)


hello, I am here to ask how to make my Form show up above all other Programs.
even full screen games.
Ive searched all over the place and I did get a Code.
which was this.

Code:
   
     
Public 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
    Public Const HWND_TOPMOST = -1
    Public Const HWND_NOTOPMOST = -2
    Public Const SWP_NOMOVE = &H2
    Public Const SWP_NOSIZE = &H1

Code:
   
      Call SetWindowPos(Form1.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE)

(Link to The thread of where i found this code)
http://www.vbforums.com/showthread.php?t=352702

but I get an error which is
In the call event "Form1.hwnd"

"hwnd" is not a member of 'topmostwindow.form1'

(All other tutorials and guides were either Outdated. or did not work.)
can someone point me in the right direction. is it even possible?
I am trying to draw my form over Eve-Online which is a MMORPG.
so i can run my own calculator/websearcher/notepad.

the ingames Calculator/websearcher/and notepad is
very slow and thats why i want to create my own, so thank you for listening.