Additions to Box Office Application (Project 2)

Total Page:16

File Type:pdf, Size:1020Kb

Additions to Box Office Application (Project 2)

Computer Programming

Additions To Box Office Application (Project 2)

Directions: Using your knowledge gained by developing the Box Office (Project 2) application and earlier visual basic programs, add the following features to your existing box office application.

1) Change the movie titles that were entered into the combo-box to more recent movies. You should include 7 total movies within your combo-box, as a new box office security feature beside each move name the movie rating should appear. Example: Dark Knight—(PG-13) the rating does not have to appear in the transaction record. When the movie is selected the program should display a movie poster or picture relating to the movie on the screen. This will involve using image boxes and writing code to allow the picture to display when the movie is selected. 2) Expand your number of tickets so that the movie clerk can select 5 or 6 tickets within your option button selection. 3) The Theater has decided to increase the price of movie tickets, matinee tickets are now $4.50 and regular tickets are $7.00. 4) Add another label that will display the total amount due for concession stand purchases. You will need to develop 4 combo packs for the theater audience to choose from. For example Option #1 could be 1 large coke, 1-large popcorn and 1 candy. Your options can contain as many items as you would like. You will use code similar to the code entered into each option button for movie tickets. One option should also be no concessions needed.**Hint-The code that was utilized for the movie tickets involved discounts and the # of tickets purchased, your concession stand options are set prices that do not need to be multiplied.** 5) Change the label that says amount due to Ticket Total, the label that displays the amount due for concessions should read Concession Total. Since two totals are being displayed the movie clerk needs to know the grand total so 2 new labels will need to be inserted, one label will read grand total and the other will be used to display the total value that will be calculated by adding the movie tickets and the concession totals together. A command button will need to be used to display the grand total, the enter button will continue to be used to place the information into the transaction record, but code will need to be included in the enter command button so that the concession total label will be cleared. The total value must be displayed in currency format. Example: Label3.Caption = Format(Val(lblamtdue.Caption) + Val(Label2.Caption), "currency") Rubric – 100 Points ___/20 7 New Movies along with movie posters appear within the program ___/20 Clerk can select 5 or 6 tickets within the program ___/20 Price increase is reflected in the amount due section ___/20 Concession stand options are displayed and calculate correctly ___/20 Total values are correctly displayed within the program

Recommended publications