The City-State from Form1’s GUI Sets the Destination Property in the Object.
b. The Form1 GUI then Gets these three Properties values from the object: ArrivalTime, DepartureTime, and Gate.
c. The TicketPrice Method calculates TicketPrice by adding 15% (Tax) to the Flight Price. That Method is used by Form1’s GUI, but the calculations are done within the TicketPrice Method within the Object.

The code below is something wrong and giving me errors for "objFlightInformation" it said "declaration expected" what is this mean?
Code:
Dim objFlightInformation as New clsFlightInformation
objFlightInformation.Destination=comboboxDestination.selecteditem
objFlightInformaiton.ArrivalTime=cstr(lblArrivalTime.text)
objFlightInformation.DepartureTime=cstr(lblDepartureTime.text)
objFlgihtInformation.Gate=cstr(lblGate.text)