Creation of the menu in visual basic, Visual Basic Programming

Assignment Help:

Creation of the Menu in VB

1. Initiate a new project by choosing a file and then new project.

2. Now select the Standard EXE as the Project type.

3. Build the Form1 active by clicking on it.

4. Pick the Tools and then Menu Editor to open the menu editor for designing.

5. Provide the caption as &display (i.e. display becomes the menu title)

6. Type a name. Suppose it be Mnudisp. This is a user defined.

7. To add the menu items click the next button in the menu editor.

8. Provide the caption as &square (i.e. square becomes the menu item)

9. Type a name. Suppose it be mnusquare. This is a user defined.

10. Relate a short cut key. The list box will pop up. Select a key. Say you have selected Ctrl + G. Then, to activate this menu item you require pressing CTRL and G keys altogether.

11. Put the checked property of the menu item square by clicking on the check box for the checked property.

12. Double click on the menu item. This takes you to the code window.

13. Type the given below code for the menu item square

Private Sub mnusquare_Click()

If (Form1.mnusquare.Checked) = False Then

Form1.mnusquare.Checked = True

Else

Form1.mnusquare.Checked = False

End If

End Sub

14. Whenever you click on square menu item for the first time, the property Checked is set to TRUE. Therefore the else part executes and sets the property Checked to the FALSE. The control behaves as a toggle.

15. To address the controls on the form, then use the form name. The menu item we want to manipulate is mnusquare .And hence, to access the control we say Form1.mnusquare.Later we want to manipulate Checked property. Therefore we are qualifying it as the Form1.mnusquare.Checked

16. Select the Run option.

17. Select the Start With Full Compile.

18. The form will be displayed.

19. Click on the disp menu title

20. The sub menu pops up. You have square as the menu item. Note that the check mark is as shown in figure.

21. If you click on the menu item square then the check mark will disappear during the next execution.

22. Clicking once further time will bring the check mark.

972_menu editor.png

Figure: The Menu Editor

2219_menu item square.png

Figure: Menu Item Square


Related Discussions:- Creation of the menu in visual basic

Hotel management system, i need to do my final project for my last year bsc...

i need to do my final project for my last year bsc honours degree in Business Information systems. I need to develop a system which is operational for hotel management system. th

Create a procedure - vbscript, Each piece of data is passed in your process...

Each piece of data is passed in your process using an argument. Arguments serve like placeholders for the data you wish to pass into your process. You can name your arguments along

Numeric data types - visual basic, Numeric data types: The Integer, lo...

Numeric data types: The Integer, long integer are used for entire numbers. Single and doubles are related with the floating point numbers. Currency is related with numbers dea

What is meant by dtd?, Question 1 Design a form based applications using l...

Question 1 Design a form based applications using labels, text boxes, and buttons to perform basic arithmetic operations on integers Question 2 Describe the concept of Except

How to include list box control in visual basic project, How to Include Lis...

How to Include List Box control in your project A list box is used for representing the users with a data. You can prefer the data from the list box for data entry. No editing

Variant subtypes, Beyond the simple string or numeric classifications, Vari...

Beyond the simple string or numeric classifications, Variant can make added distinctions regarding the specific nature of numeric information. For instance, you can have numeric in

For next loop - vbscript, You can employ For...Next statements to run a blo...

You can employ For...Next statements to run a block of statements a specific number of times. For loops, employ a counter variable whose value is increased or decreased with each r

#tit, anumberisprimeornot

anumberisprimeornot

To calculate rectangle, two sides are given of a sheet e.g 23*36 i want hal...

two sides are given of a sheet e.g 23*36 i want half or 1/2 of this sheet next i want 1/4(one fourth) of this sheet if sheet size is 23*36 next i want 1/8 similary as above

Help context property, Sets or returns context ID for topic in Help File. I...

Sets or returns context ID for topic in Help File. If Help file is indicated in the VBScript Err Object HelpFile Property, the HelpContext property is utilized to display automatic

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd