Graded A+
provide input, trigger processing, and display results - Answers The GUI of VB provides a way for
users to:
program - Answers set of instructions
software - Answers various programs designed to support a computer
Integrated Application Development (IAD) tool - Answers consists of an editor, a compiler,
debugging tool, and online help. used to write and test programs; includes the GUI that the user
will actually see and interact with
IDE is mostly just straight code; IAD has shapes, windows, etc. - Answers what is the difference
between IDE and IAD?
event-driven - Answers Visual Basic programs are:
event - Answers something that happens that the computer can detect
form window
code window
solution explorer window
property window
toolbox window
toolbar
menu bar - Answers 7 Elements of the Development Environment
x is container, y is content - Answers how to assign stuff, x=y
label control - Answers used to display text on a form
textbox control - Answers enable user to enter information
button control - Answers to allow user to initiate actions
radio button control - Answers to allow user to select or not select
picture box control - Answers to display an image
label.text = "Tony"
, Label.visible = true/false
label.enabled = true/false
(true=visible, enable means you can click on it/interact with it) - Answers important property of
labels
textbox1.text = "I'm hangry"
textbox1.visible = true
textbox1.enabled = true
textbox1.multiline = true
textbox1.passwordChar = "*" - Answers important properties of text boxes
button1.text = "Tony"
button1.visible = true/false
button1.enabled = true/false - Answers important properties of buttons
radiobutton1.text = "I am happy"
radiobutton1.visible = true
radiobutton1.enabled = true
radiobutton1.checked = true - Answers important properties of radio buttons
**Setup a duration - Answers How to add a timer tool?
- Answers How to lock the controls on a form?
- Answers How to set focus of cursor?
Behavior setting you can change - Answers How to set TabIndex value for each control?
- Answers How to clear textbox entry?
- Answers How to open the Project Designer Window?
.sln - Answers What extension does the solution file has?
Dot Notation - Answers ControlName.PropertyName
Assigning property values - Answers ControlName.PropertyName = new value