USING VISUAL STUDIO 2017, LANGUAGE VISUAL C#
I have struggled on this program for quite some time and stillcan't quite figure it out.
I'm creating an app that has 2 textboxes, 1 for inputtingcustomer name, and the second for entering the number of ticketsthe customer wants to purchase. There are 3 listboxes, the firstwith the days of the week, the second with 4 different theaters,and the third listbox is to display the customer name, number oftickets, and total price. The ticketbase = 50, weekend upcharge =30, for Imax & Upac theaters = 35 and for Capital and Premiertheaters = 25. There are 4 buttons: Process customer, Display dailyreport, clear all, and exit. For the process customer button, it isclicked after customer has inputted their info in textbox1 and 2and selected from listbox 1 and 2. it is supposed to compute thecost of tickets and enter that data into an array, not more than 5customers can be processed without clearing all with the clear allbutton. Once process customer button is pressed it displays amessage box displaying \"customer processed\", and all selectedinputs should be cleared after pressing OK. In the display dailyreport button it is supposed to take array elements using a loop,one at a time and add them to the listbox3. There are supposed tobe 2-3 arrays for the input one for name of customer, another fornumber of tickets, and another for the cost. And for the output itis supposed to be stored in internal arrays. I am not sure of howto set this up.