Hi Sean,
Get your form in Design View.
Right-Click on the quantity field, choose properties and
look at the event tab. The AfterUpdate event fires every
time that you update the quantity field. In this case it
calculates the price. Experiment with it.
Notes:
You should not really store the total, because you can
calculate it easily (as shown). You can also easily calculate
the total in queries for your forms/reports. Storing values
like this will bring you trouble in the future. You can't always
assume that your stored value is in "synch".
You should not use Spaces or special symbols ("/") in your
field and table names. In most cases you can get away
with it by using [brackets] around the name, but its best
to just stay away from them.
Experiment with the Events that you see in the properties.
Experiment with making some queries to look at your data.
hth,
Wayne