I created a Menue Sheet with combobox as require by the book.Select Drink ,App,Meal,Desse rt , then display the total of the meal.
Each Topic item is in array
All works well, but I was wanting to add Label , show each item select (like a bill).
Each Topic item is in array
Code:
Double[] Dessert = {5.95,5.95,6.00,5.00,6.60,6.95 };
int Indx = DescComboBox.SelectedIndex;
SubTotal += Dessert[Indx];
Calculate();
Comment