USUÁRIO:      SENHA:        SALVAR LOGIN ?    Adicione o VBWEB na sua lista de favoritos   Fale conosco 

 

  Fórum

  Visual Basic
Voltar
Autor Assunto:  Menu com imagem
Vetorial
CAIEIRAS
SP - BRASIL
ENUNCIADA !
Postada em 16/03/2007 10:24 hs            
Bom dia
 
Gostaria de ao clicar com o botao direito do mouse abri-se o menu com imagens do lado esquerdo do texto.
Tem como fazer isto?
 
att
Vetorial
 
   
Ama
Pontos: 2843
UBERLÂNDIA
MG - BRASIL
ENUNCIADA !
Postada em 18/03/2007 15:27 hs         

'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: KPDTeam@Allapi.net

'E-Mail: KPDTeam@Allapi.net

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 Min 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

   
Página(s): 1/1    


Seu Nome:

Seu eMail:

ALTERAR PARA MODO HTML
Mensagem:

[:)] = 
[:P] = 
[:(] = 
[;)] = 

HTML DESLIGADO

     
 VOLTAR

  



CyberWEB Network Ltda.    © Copyright 2000-2024   -   Todos os direitos reservados.
Powered by HostingZone - A melhor hospedagem para seu site
Topo da página