Hi
Im having a problem.In my database i would like the user to select a choice from each of my five combo boxes, Each selection is attached a cost.
In a textbox(txt1) this seletion would be concatenated and a total price is supposed to be in another textbox(txtTotalCost). Im having a problem with the total price. What i did was to assign the price to the the item selected in the combo box using code. But i realised that if the user wanted to change the price they wouldn't be able to do that.
Example:
What i would like to do is to refence the table or query for the prices, so that i can total them and if the user wanted to make changes to the prices they could do so using a form i would provide on the form to make changes. But i have no idea where to begin. Can someone offer me some help please.
Thanks
Mercury
Im having a problem.In my database i would like the user to select a choice from each of my five combo boxes, Each selection is attached a cost.
In a textbox(txt1) this seletion would be concatenated and a total price is supposed to be in another textbox(txtTotalCost). Im having a problem with the total price. What i did was to assign the price to the the item selected in the combo box using code. But i realised that if the user wanted to change the price they wouldn't be able to do that.
Example:
Code:
if cbo1 = "Paper" then
txtCost = 3
end if
What i would like to do is to refence the table or query for the prices, so that i can total them and if the user wanted to make changes to the prices they could do so using a form i would provide on the form to make changes. But i have no idea where to begin. Can someone offer me some help please.
Thanks
Mercury
Last edited: