0
Okay so when a soda is purchased one of the buttons (button1 thru button8) is clicked, correct? So then checkMoney is executed. In checkMoney you need to add up all the money in the money.TotalAmount Stack to calculate totalAmount. Next you need to compare that to the ProductPrice for the selected drink; correct? I don't know if you want to do that in checkMoney or not. In the button click events you execute checkMoney; do you want checkMoney to check to see if the totalAmount is less than, equal or greater than the ProductPrice for the selected drink? Or in the button click event you can call a different function after calling checkMoney.
Note that whatever you do, dk, pt and pb must be a member of Form1, not local to Form1_Load. That is probably one problem / solution you need to understand. Then in each of the button's click event you know what drink to use.
Does that help?
0
thanks for the help
0
Okay I looked at your code. You have an excellent start. You almost have it done. I will try to get time to look at it more later.
I like that you have objects (classes). That is good. I notice that Money is derived from Product. That seems strange to me. It might be correct for the way you are doing things but based on my initial quick look I think that is strange. I will look at it more later.
0
i did the part where the buyer input the money already. that part works already and it also add up the money. the part that i'm stuck on is where the buyer would select a product and it would say if the buyer put in enough money or not. and i also need help with the giving the change back if the buyer input more money then the cost of the product. say the product cost $1.25 and the buyer put in $2.00 the machine would give back $.75. that the only part i'm stuck on.
0
Okay so you need a way for money to be put in. You also need a way to keep track of how much has been put in. You need a way for the customer to select a purchase. When the customer selects something, you need to compare the amount they have put in to the cost of the item, then do something based on that. Have you done all that? If not, what part have you not done? Are you able to at least compare the amounts as I described?
0
i need help trying to put an if statement to see if the buyer have input any money into the machine. if the buyer didn't input enough money it would popup and say "Please put in the right amount" and if the put in the right amount it would give the buyer their product. I'm also need help with making the change show up in the change text box if the buyer put in more then the cost of the product.
0
If you can be more specific about what you need help with then you are much more likely to get help.
0
What problem you are facing?