Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/11/2004, 13:03
RadicalEd
 
Fecha de Ingreso: octubre-2004
Ubicación: COLOMBIA
Mensajes: 240
Antigüedad: 20 años, 1 mes
Puntos: 3
MIRA ESTE ENLACE
MENU ICONOS
MIRA ASI CON UN PICTURE DE 16*16
Const MF_BYPOSITION=&H400&
API's GetMenu, GetSubMenu, SetMenuItemBitmaps
Private Sub Form_Load()
Dim menu As Long, submenu As Long
menu = GetMenu(Me.hwnd)
If menu=0 Then
MsgBox "No hay menu"
End
End If
submenu = GetSubMenu (menu, 0)
If submenu=0 Then
MsgBox "No hay submenu"
End
End If
SetMenuItemBitmaps submenu, 0, MF_BYPOSITION, Pic1.Picture, Pic1.Picture
End Sub
OJALA TE SIRVA
CHAO

Última edición por RadicalEd; 04/11/2004 a las 13:15