EXERCISE TOPIC▼
VISUAL BASIC EXERCISES▼
VISUAL BASIC EXERCISES▼
- Drawing forms (2)
- Form events (1)
- Variables and data types (2)
- Enumerations and constants (2)
- Form validation (3)
- Menus and toolbars (2)
- Files and folders (1)
- Basic DataGridViews (1)
- Reacting to DataGridView events (3)
- Advanced DataGridViews (2)
- Creating classes (4)
- Coding in VB.NET (2)
- Variables and constants (3)
- Testing conditions (2)
- Passing arguments (3)
- Using arrays (2)
- Loops (2)
- Working with files (3)
- Lists (3)
- Creating properties (3)
Visual Basic | Menus and toolbars exercise | Coding a menu, toolbar and status bar
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
You can learn how to do this exercise on the relevant Wise Owl classroom training course (sadly for the moment only in the UK).
Software ==> | Visual Basic (46 exercises) |
Version ==> | |
Topic ==> | Menus and toolbars (2 exercises) |
Level ==> | Average difficulty |
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Add the form in the folder above into your project (or use a previous version that you have been working with).
Add a MenuStrip, ToolStrip, StatusStrip and ContextMenu to your form so that the form works as shown below (you may find the property shown below useful):

When you click in a textbox, the menu, toolbar, right mouse menu and status bar all react sensibly
Here is what the menu would look like for our example:

The current colour option is disabled and checked
You may find it useful to write the following property of the form, so that you can find out which the currently selected textbox is (note that if the user is not on a text box, this routine will return Nothing - which you can test for):

TryCast attempts to convert an object to a specific data type, and returns NOTHING if this fails
When you have everything working perfectly (or more likely, when you run out of time), close everything down!