[Back to Page 1]
Change the Title of the FormTo get back to the form design view, click on the tab at the top that says Form1.vb [Design] Change the caption of the form by clicking anywhere on the form, then editing the Text in the Properties window:Change it to say Interest Calculator (or use your name, like Matthew's Interest Calculator).
|
|
Use the Properties windows to change the (Name) of each textbox, and to change the Text property to be empty. The textboxes should have the following names (top to bottom): txtRate, txtTerm, txtInvest, txtEnding. Also, change the Text of the new button to be Compute Interest, and the (Name) to be cmdCompute. |
Try running your program. If it's working properly, you should be able to type in the 8, 10, and 1000, then click Compute Interest and get an answer like this: |
|
The final step is to "compile" this program. This will make your program into an .EXE file, which then can be run independently, without Visual Basic. From the Build menu, choose Build Interest Calc: | |
This creates a folder called bin. Inside that folder, there will be a file named InterestCalc.exe. Email me this file as an attachment to complete the homework. |
|
[Back to Page 1]