views:

91

answers:

1

My current project is to write a program that basically is a cash register for a pizza company.

The user enters the pizza, along with toppings, drinks, and sides.

I want to add a "Review Order Form" for when the user decides to check out. The form will pop up and inform the user of everything he/she has ordered. From there the user makes changes to the order as necessary then confirms and checks out.

I was wondering if anybody could give me any clues on how to display all of the items the user has ordered. I do have lists of all the items selected by the user. I am just unsure on how to display all of the items to the screen cleanly in a separate form.

A: 

Basically you will want to store each item the user orders into a collection. Then when you want to review, you just iterate through the collection and output each item in the collection.

icemanind