home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- Declare Function GetSystemMenu Lib "user32" _
- (ByVal hwnd As Long, ByVal bRevert As Long) As Long
-
- Declare Function GetMenuItemCount Lib "user32" _
- (ByVal hMenu As Long) As Long
-
- Declare Function DrawMenuBar Lib "user32" _
- (ByVal hwnd As Long) As Long
-
- Declare Function RemoveMenu Lib "user32" _
- (ByVal hMenu As Long, ByVal nPosition As Long, _
- ByVal wFlags As Long) As Long
- Public Const MF_BYPOSITION = &H400&
- Public Const MF_REMOVE = &H1000&
-
-
- Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
-