在程序中用到setwindowpos
' 设置窗体在最前
  SetWindowPos Me.hwnd, HWND_TOPMOST, Me.Left / Screen.twipsperpoxelx, _
  Me.Top / Screen.TwipsPerPixelY, Me.Width / Screen.TwipsPerPixelX, _
  Me.Height / Screen.TwipsPerPixelY, 0
 labelenglish.Caption = "欢迎是呀Wordmemo背单词软件。V1.0!"  在程序最前面我用了
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
 可是不行 说HWND_TOPMOST等 没有定义
我把放到模块里面定义也不行  请问要如何定义SetWindowPos