
Ross Sheppard High School
Computer Programming 20
Student Learning Guide
The Hello World Program
| When you have finished this project, you will be able to: | |
| describe the Visual Basic desktop | |
| plan a Visual Basic project | |
| create a new Visual Basic project | |
| save, open, and edit an existing Visual Basic project | |
| describe and use Visual Basic programming conventions | |
| use Visual Basic programming procedures | |
|
describe the following terms:
|









|
Object |
Property |
Setting |
|
CommandButton |
Name |
btnExit |
|
Caption |
E&xit |



|
Object |
Property |
Setting |
|
CommandButton |
Name |
btnHello |
|
Caption |
&Display Hello |
|
Object |
Property |
Setting |
|
CommandButton |
Name |
btnClear |
|
Caption |
&Clear |

|
Object |
Property |
Setting |
|
TextBox |
Name |
txtDisplay |
|
Text |
Make it blank |








'The following code clears the
'text in the TextBox txtDisplaytxtDisplay.Text = ""
'The following code displays the
'message Hello World in the
'TextBox txtDisplaytxtDisplay.Text = "Hello World!"

