EXERCISE TOPIC▼
- Access exercises (91)
- C# exercises (79)
- Excel exercises (278)
- Power Apps exercises (13)
- Power Automate exercises (18)
- Power BI exercises (139)
- Power Platform exercises (157)
- Python exercises (28)
- Report Builder exercises (141)
- SQL exercises (198)
- SSAS exercises (51)
- SSIS exercises (46)
- SSRS exercises (99)
- VBA exercises (85)
- Visual Basic exercises (46)
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 | Passing arguments exercise | Process the data in a form to find how desirable someone is!
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.
Software ==> | Visual Basic (46 exercises) |
Version ==> | Any version of VB |
Topic ==> | Passing arguments (3 exercises) |
Level ==> | Average difficulty |
Subject ==> | Visual Basic training |
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.
Press CTRL + D to add the file called frmMaleOomphFactor.vb from the above folder into your project (or right click on the project and choose to add it as an existing item).
Change your project's properties to make this the default form for your project. When you run your project, you should see this:

The idea is that the desirability quotient updates when you change what you look like or what you drive.
Double-click on each of the two combo boxes when designing the form to create event-handlers to handle the SelectedIndexChanged event (this fires when anyone changes the value in a combo box).
In each of the event-handlers you've created call the same RecalculateDesirabilityCoefficient subroutine. Now write this subroutine to work out the DQ of the male concerned as follows:
Clooney | Michael | Osborne | |
---|---|---|---|
Ferrari | Sex god | Sex god | Sex god |
Citroen | Good husband? | Good husband? | Avoid |
Slowly | Good husband? | Avoid | Avoid |
The subroutine should then update the lblDesirabilityQuotient label to display the correct desirability quotient.
We don't recommend that you use this shallow and mercenary way to assess the suitability of a partner (although the algorithm isn't a bad one).
Run your application, and check that it displays the correct DQ for all possible cases.