Click here to Skip to main content
15,885,757 members
Articles / Programming Languages / VBScript

Using Icons in the Menus VB!

Rate me:
Please Sign up or sign in to vote.
3.15/5 (13 votes)
15 Apr 2004CPOL1 min read 91.7K   3.9K   14   8
Add icons in the menus of your applications developed in VB 6.0
Sample Image - VBMenuIcon.jpg

Introduction

Here I am again, with other programming trick. VB doesn't provide any support for icons in the menus (VB 6 and previous). Then, to accomplish such a task, it is necessary to run over to call native API of Windows.

Purpose

Some programmers say that is unnecessary. But it is common for the users to use the toolbar in most of the cases. It is interesting that they can associate the menu options to the entrances in the toolbar.

For an application to be easy to use, it should be the most friendliest possible and not demand complex reasoning of the user.

The people use computers to activate your tasks and to win time.

The Road of the Stones

The best way to accomplish this task would be with a visual atmosphere where you could choose in the list of available menus, the item of wanted menu and in others (parallel), the wanted icon (that is made by other tools).

However, I will teach the less friendly, however functional way of making it.

API

VB.NET
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

Const MF_BYPOSITION = &H400&

Code Piece

VB.NET
Private Sub SetMenuIcon()
On Error Resume Next
Dim hMenu As Long
Dim hSubMenu As Long
Dim Ret As Long
'Get main menu ID
hMenu = GetMenu(hwnd)
'
'MENU FILE
'Get sub menu 0 (File items)
hSubMenu = GetSubMenu(hMenu, 0)
'set bitmap to menu item, by ordinal
Ret = SetMenuItemBitmaps(hSubMenu, 0, MF_BYPOSITION, iNew.Picture, iNew.Picture)
Ret = SetMenuItemBitmaps(hSubMenu, 1, MF_BYPOSITION, iOpen.Picture, iOpen.Picture)
Ret = SetMenuItemBitmaps(hSubMenu, 2, MF_BYPOSITION, iSave.Picture, iSave.Picture)
'Skip the separator (it's 3)
Ret = SetMenuItemBitmaps(hSubMenu, 4, MF_BYPOSITION, iSave.Picture, iSave.Picture)
'Skip the separator (it's 5)
Ret = SetMenuItemBitmaps(hSubMenu, 6, MF_BYPOSITION, iExit.Picture, iExit.Picture)
' The rest of the code was removed to maintain clear.  
' See in the file 'ZIP the complete and functional example.
End Sub

The icon may be 14x15 pixels.

If you have some doubt or suggestions, send me an email.

Contact Details

E-mail: willians@bb.com.br
MSN: willian_cpp_br@hotmail.com
ICQ# 89506722
Phone: +55 (64) 612-6030
Fax: +55 (64) 612-6010

History

  • 15th April, 2004: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Brazil Brazil
Developer:
- MS VB6
- C/C++/C#
- VBScript
- JScript
- Clipper
- Cobol
- Natural
- Pascal
- TCL/Tk
- Python
___________________________________
Willian Silva Rodrigues
http://www.williansilva.com.br
http://br.linkedin.com/in/willianbr
--- --- --- ---
Radio(NXTL):55*112*109193
BBM PIN: 238d4349
___________________________________

Comments and Discussions

 
Questionhow to add bitmap in sub , sub menu in vb 6.0 Pin
Member 1235285725-Feb-16 19:44
Member 1235285725-Feb-16 19:44 
GeneralMy vote of 2 Pin
almend9-Jan-15 7:13
professionalalmend9-Jan-15 7:13 
GeneralNice! Pin
brco695-Jul-14 11:01
brco695-Jul-14 11:01 
GeneralMy vote of 5 Pin
Member 954013923-Oct-12 11:32
Member 954013923-Oct-12 11:32 
Questionhow to add copy button Pin
HARDEEP_SAINI30-Mar-12 20:06
HARDEEP_SAINI30-Mar-12 20:06 
Generalthanks Pin
cyd_vane26-Jun-07 2:11
cyd_vane26-Jun-07 2:11 
GeneralNot going to work Pin
Alkali_Guy16-Aug-06 21:24
Alkali_Guy16-Aug-06 21:24 
GeneralImages not fit on menu... Pin
A_Vietnamese29-Jun-04 12:48
A_Vietnamese29-Jun-04 12:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.