Application Title: Purpose: Program Procedures: d Algorithms, Processing, and Conditions: Notes and Restrictions: Comments: Alamo Tour This Windows Desktop application allows a user to select Alamo guided tours, weekend or weekday tours, and the number of tickets. The total cost with tax is computed. A user can select an Alamo tour, weekend or weekday, and the number of tickets, and then calculate the total cost of the tickets with tax. 1. The user enters the Alamo tour (Alamo Story $19, Alamo Story with Battleground Tour $29, or the Mission Trail Deluxe Tour $49), weekend or weekday (10% discount), and the number of tickets needed. The type of Alamo Tour is selected from a ComboBox object. The other objects are not visible until the user selects this option. 2. A different Function procedure will be called for each tour to calculate the total cost of the tickets. Another Function will be called to compute the tax, regardless of which tour is selected. 3. Two types of day tours are available: weekend and weekday. The weekday tours receive a 10% discount before taxes. 4. Display the subtotal with applicable discount, city tax (12%), and final total of the tickets purchased. 1. Validate input by using Try-Catch blocks in separate procedures as needed. 2. Use separate Sub and Functions for each portion of this program. 1. The program opens with a splash screen that is displayed for approximately five seconds. 2. Obtain images for this program from CengageBrain.com. The name of the picture for the Windows form is Alamo.

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter2: Planning Applications And Designing Interfaces
Section: Chapter Questions
Problem 5E: Create an application that calculates and displays two raise amounts, which are based on an...
icon
Related questions
Question

Design a Windows application in Visual Basic and an Event Planning Document from these assignments on the attached images

Case Programming Assignments
3
ALAMO TOUR
Design a Windows application and write the code that will execute according to the program requirements in
Figure 7-69 and the Use Case Definition in Figure 7-70 on page 518. Before writing the code, create an event
planning document for each event in the program. The completed Windows Form object and other objects in the
user interface are shown in Figure 7-71 on page 518.
REQUIREMENTS DOCUMENT
September 24, 2017
Date:
Date Submitted:
Application Title:
Purpose:
Program
Procedures: and
Algorithms,
Processing, and
Conditions:
Notes and
Restrictions:
BH
Comments:
algal
0522
0042
Alamo Tour
This Windows Desktop application allows a user to select Alamo guided tours,
weekend or weekday tours, and the number of tickets. The total cost with tax is
computed.
A user can select an Alamo tour, weekend or weekday, and the number of tickets, and
then calculate the total cost of the tickets with tax.
1. The user enters the Alamo tour (Alamo Story $19, Alamo Story with Battleground
Tour $29, or the Mission Trail Deluxe Tour $49), weekend or weekday (10%
discount), and the number of tickets needed. The type of Alamo Tour is selected from
a ComboBox object. The other objects are not visible until the user selects this option.
2. A different Function procedure will be called for each tour to calculate the total
cost of the tickets. Another Function will be called to compute the tax, regardless
of which tour is selected.
3. Two types of day tours are available: weekend and weekday. The weekday tours
receive a 10% discount before taxes.
4. Display the subtotal with applicable discount, city tax (12%), and final total of the
tickets purchased.
1. Validate input by using Try-Catch blocks in separate procedures as needed.
2. Use separate Sub and Functions for each portion of this program.
1. The program opens with a splash screen that is displayed for approximately five
seconds.
2. Obtain images for this program from CengageBrain.com. The name of the picture
for the Windows form is Alamo.
FIGURE 7-69
Transcribed Image Text:Case Programming Assignments 3 ALAMO TOUR Design a Windows application and write the code that will execute according to the program requirements in Figure 7-69 and the Use Case Definition in Figure 7-70 on page 518. Before writing the code, create an event planning document for each event in the program. The completed Windows Form object and other objects in the user interface are shown in Figure 7-71 on page 518. REQUIREMENTS DOCUMENT September 24, 2017 Date: Date Submitted: Application Title: Purpose: Program Procedures: and Algorithms, Processing, and Conditions: Notes and Restrictions: BH Comments: algal 0522 0042 Alamo Tour This Windows Desktop application allows a user to select Alamo guided tours, weekend or weekday tours, and the number of tickets. The total cost with tax is computed. A user can select an Alamo tour, weekend or weekday, and the number of tickets, and then calculate the total cost of the tickets with tax. 1. The user enters the Alamo tour (Alamo Story $19, Alamo Story with Battleground Tour $29, or the Mission Trail Deluxe Tour $49), weekend or weekday (10% discount), and the number of tickets needed. The type of Alamo Tour is selected from a ComboBox object. The other objects are not visible until the user selects this option. 2. A different Function procedure will be called for each tour to calculate the total cost of the tickets. Another Function will be called to compute the tax, regardless of which tour is selected. 3. Two types of day tours are available: weekend and weekday. The weekday tours receive a 10% discount before taxes. 4. Display the subtotal with applicable discount, city tax (12%), and final total of the tickets purchased. 1. Validate input by using Try-Catch blocks in separate procedures as needed. 2. Use separate Sub and Functions for each portion of this program. 1. The program opens with a splash screen that is displayed for approximately five seconds. 2. Obtain images for this program from CengageBrain.com. The name of the picture for the Windows form is Alamo. FIGURE 7-69
Case Programming Assignments
Alamo Tour (continued)
USE CASE DEFINITION
1. The user views the opening splash screen for five seconds.
2. The user selects which type of tour tickets and whether they desire a weekend or weekday tour.
3. The user enters the number of tickets needed.
4. The user taps or clicks the Calculate Cost button or presses Enter to display the final cost.
THEMUS
Alamo Tour
ⒸiStock.com.com/robertcicchetti
Alamo Tour
Version 1.00
Copyright © 2017
FIGURE 7-71a
FIGURE 7-70
RUOT OMALIA
Tickets for the Alamo Tour
GUIDED TOUR
THROUGH THE ALAMO
The Alamo Story with Battleground Tour
2
bas gulaszor!
Enter Number of Tickets:
O Weekend
* Weekday
Sub Total:
Tax:
Final Total:
FIGURE 7-71b
Calculate Cost
$52.20
$6.26
$58.46
Transcribed Image Text:Case Programming Assignments Alamo Tour (continued) USE CASE DEFINITION 1. The user views the opening splash screen for five seconds. 2. The user selects which type of tour tickets and whether they desire a weekend or weekday tour. 3. The user enters the number of tickets needed. 4. The user taps or clicks the Calculate Cost button or presses Enter to display the final cost. THEMUS Alamo Tour ⒸiStock.com.com/robertcicchetti Alamo Tour Version 1.00 Copyright © 2017 FIGURE 7-71a FIGURE 7-70 RUOT OMALIA Tickets for the Alamo Tour GUIDED TOUR THROUGH THE ALAMO The Alamo Story with Battleground Tour 2 bas gulaszor! Enter Number of Tickets: O Weekend * Weekday Sub Total: Tax: Final Total: FIGURE 7-71b Calculate Cost $52.20 $6.26 $58.46
Expert Solution
steps

Step by step

Solved in 5 steps with 6 images

Blurred answer
Knowledge Booster
Returning value from Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L