I want to know how to write a program that allows a user to select what movie they want to see (out of about 4) and the time they want to watch it at. The program would allow the user to select a movie, select a time for the movie, enter the number of tickets they desire, and view the amount due. i've got pics of the movie posters and I want it to be on the side in the box where you select the movie etc.

Also Im putting in a string for movie times:

Dim strTimes(,) As String = { _
{"01:00 PM", "03:00 PM", "05:00 PM", "07:00 PM", "09:00 PM", "11:00 PM"}, _
{"01:15 PM", "03:15 PM", "05:15 PM", "07:15 PM", "09:15 PM", "11:15 PM"}, _
{"01:30 PM", "03:30 PM", "05:30 PM", "07:30 PM", "09:30 PM", "11:30 PM"}, _
{"01:45 PM", "03:45 PM", "05:45 PM", "07:45 PM", "09:45 PM", "11:45 PM"}}


Thanks