Software wouldn't be very useful without being able to get data from a user. We are going to learn several ways of inputting data from the user, and storing it within our program for later use.
Allows a program to input text from the user.
Prefix: txt
Example of use:
dblGrade = txtGrade.Text
Open Payroll program, and add 3 TextBoxes to input a name, hourly wage and hours worked into variables.
Format the result as currency. (See document below)
Allows the user to select an item.
Can also function similar to a regular button.
Prefix: rad
Allows you to group radio buttons, and other controls together.
Prefix: grp
ColorPicker
Create a ColorPicker program according to the note.