load
这个控件的具体路径是什么?

解决方案 »

  1.   

    www.google.com搜activebar
    多得很假如您想程序实现需要用API'This project needs a form with a menu with at least one submenu
    'It also needs a picturebox, Picture1, that contains a small b/w bitmap
    Const MF_BYPOSITION = &H400&
    Private Declare Function GetMenu Lib "user32" (ByVal hwnd As Long) As Long
    Private Declare Function GetSubMenu Lib "user32" (ByVal hMenu As Long, ByVal nPos As Long) As Long
    Private Declare Function SetMenuItemBitmaps Lib "user32" (ByVal hMenu As Long, ByVal nPosition As Long, ByVal wFlags As Long, ByVal hBitmapUnchecked As Long, ByVal hBitmapChecked As Long) As Long
    Private Sub Form_Load()
        'KPD-Team 2000
        'URL: [email protected]
        'E-Mail: [email protected]
        Dim hMenu As Long, hSubMenu As Long
        'get the handle of the menu
        hMenu = GetMenu(Me.hwnd)
        'check if there's a menu
        If hMenu = 0 Then
            MsgBox "This form doesn't have a menu!"
            Exit Sub
        End If
        'get the first submenu
        hSubMenu = GetSubMenu(hMenu, 0)
        'check if there's a submenu
        If hSubMenu = 0 Then
            MsgBox "This form doesn't have a submenu!"
            Exit Sub
        End If
        'set the menu bitmap
        SetMenuItemBitmaps hSubMenu, 0, MF_BYPOSITION, Picture1.Picture, Picture1.Picture
    End Sub
      

  2.   

    哦,这是个第三方控件,做界面非常好下载:http://www.datadynamics.com/files/activebar/ab2eval.exe
      

  3.   

    您必须把第三方控件也打包进去。activebar可以用freeactive这个东西来crack
      

  4.   

    activebar
    http://www.datadynamics.com/freeactiveX在
    www.vbgood.com
    www.applevb.com
    www.vbeden.com
    www.21code.com
    看看