Whenever you want to implement your application through Visual Basic 6.0, Menu provides an easy way to connect another form or other activity with all controls. If you want to proceed to know about its working process, come and learn about how to Create Menu Editor with Menu Design in VB6.0.
Here we will discuss about 2 processes.
- Add Menu Items with Shortcut Key
- Enable or disable Menu items during Run time
1. Add Menu Items with Shortcut Key:
First, Open project and find “Menu Editor” icon from Visual basic Toolbox. Remember this icon will show in enable view, when project is in design mode.
First go to this option and click on it. When you click on this icon, it will show a Box with “Menu Editor” Name. For open it, you can also try to press shortcut key (Ctrl+E) from keyboard. This box contains many controls. Know something about its control as follow.
Caption: | Show the Item's Name during run time. |
Name: | This will use to define every items name, which will use to write code with its name event. |
Shortcut: | If you want to provide any shortcut key perform through keyboard on that particular item, then select any key option from this combo box. |
How To Create Menu Editor in Visual Basic 6.0?
Create Main Menu in VB6.0:
For Creating Menu's Main Items, you have to follow the steps or points (1),(2),(3),(4),(5) describe as following image.Menu design process |
Note: Consider about that when you input items name in “Name” textbox, do not use ‘SPACE’ or ‘-’ or ‘,’ or ‘.’ . Use ‘_’ except this.
SendKeys() run time error solution in vb6.0
How To add Sub-Menu in VB6.0?
Create Sub-Menu in VB6.0:
You can add items according to requirement. It is not necessary to input same name as mention above. If you want to give any shortcut key then follow the image bellow.
For Assign sub-menu inside Main, you have to click on this button. This will show items in following format with example:
(“.......” + Item name)
eg.: “......Form2”
Shortcut Key Select |
Menu Click Event Activity in VB6.0
After doing all these process. Click on “OK” button. Now write code in its items events. Suppose we add 2 Form to Project. First name is “Form2” and second is “Form3”.
Now, write code in Item “Open_form2”.
Private Sub Open_form2_Click() Form2.Show , Form1 Form2.BackColor = &HC0C0FF Form2.Height = 4000 Form2.Width = 5000 End Sub
In this code we will open Form2 and change its Height, width and Background color. Now, write code in Item “Open_form3”.
Private Sub Open_form3_Click() Form3.Show , Form1 Form3.BackColor = &HC0FFC0 Form3.Height = 4500 Form3.Width = 5500 End Sub
This code will open Form3 and also change its Height width and Background color. Now, write code in Item “F_Exit”.
Private Sub F_Exit _Click() End End Sub
Tips to know about editing or deleting selected Listview Items in vb6.0
There is output of this process, which will show the main work during run time.
Note: The Underscore process will not work on sub- items. You can apply it on main item such as above describe.
How TO Enable or Disable Menu Items in VB6.0?
2. Enable or disable Menu items during Run time:
If you want to enable or disable process during run time, you have to write code for it.
Suppose we drag 2 command buttons Command1 and Command2 with Caption “Disable” and “Enable”. Just write code in it.
Adodc database connected to Login form in vb6.0Suppose we drag 2 command buttons Command1 and Command2 with Caption “Disable” and “Enable”. Just write code in it.
For Disable Items:
Private Sub Command1_Click() Open_form2.Enabled = False Open_form3.Enabled = False End Sub
For Enable Items:
Private Sub Command2_Click() Open_form2.Enabled = True Open_form3.Enabled = True End Sub
There is following output.
Above given animated image shows the process of Menu in VB6.0. In this way you can learn about Create Menu Editor with Menu Design in VB6.0 with SKOTechlearn.
ListView data retrieve in TextBox through Visual Basic6.0 SKO Tips
Hi, Nice collection i appreciate your work...
ReplyDeletekeep sharing such a good stuff and keep up the good work
thank you
check out my collection here: Love Status
Thanks for it !!
DeleteI really appreciate thank u
DeleteWOOOH THANX A LOT
ReplyDelete