17
You should unzip and download the beginning programs.

You should unzip and download the beginning programs

Embed Size (px)

Citation preview

Page 1: You should unzip and download the beginning programs

You should unzip and download the beginning programs.

Page 2: You should unzip and download the beginning programs

The basic pay program is included in theprograms you downloaded.

Note the property change for BackColor for the txtGrossPay box.

Page 3: You should unzip and download the beginning programs

You can also change the font or for that matter the font color.

Page 4: You should unzip and download the beginning programs

Here I added an extra button to the form and left the name of Button1, then I clicked on it and it developed the structure for the Button1_Click event.

Page 5: You should unzip and download the beginning programs

I removed Val around the text fields and put in a + and got concatenation instead of addition.

Page 6: You should unzip and download the beginning programs

When I put the Val back, I got addition.

Page 7: You should unzip and download the beginning programs

& can also be used for concatenation.

Page 8: You should unzip and download the beginning programs

Here I am using Clear() to clear out the text boxes.

Page 9: You should unzip and download the beginning programs

When I clear, I put the focus on thetextbox named txtFirst.

Page 10: You should unzip and download the beginning programs

Here I have a label that willshow information as aresult of the calculation.

Page 11: You should unzip and download the beginning programs

Review the rules of order of operation.

Page 12: You should unzip and download the beginning programs
Page 13: You should unzip and download the beginning programs
Page 14: You should unzip and download the beginning programs
Page 15: You should unzip and download the beginning programs
Page 16: You should unzip and download the beginning programs

This shows defining global and local variables and defining a constant.

Page 17: You should unzip and download the beginning programs