Hello everyone, hoping someone here can help me with a problem I've been having with my program. A couple of weeks ago my works computer crapped out and we lost our showtime program, i have been working to recreate it but i have run into a problem i cant seem to fix.
Basically its a 3 page form, the first page allows the user to enter in new movie info, including Movie Name, Rating, and Run Time. The second page allows the user to create a schedule. This "schedule" is really just a long table:
ID | (1)Theater Num | (1)Movie Name | (1)Start1 ... | (1)Start7 | (2)Theater Num ...
The columns then start repeating for the next movie going up to (18), it repeats because our theater can run up to 18 different movies in a day.
Now the problem I am having is changing the table created by the user into an actual start schedule that should look like:
Start Time | Theater | Movie Name
The schedule made by the user does not always include 7 start times per movie either so i want to make sure that if the start time is blank it is not included in the start schedule. I also want to include a list of schedules created by the user (based on the unique ID) so the user can select which schedule they want to organize and print.
Thanks for any help you guys can give and if you need any additional information i will provide what i can.