I have a global variable called g_dblConversion that saves the conversion rate from a seperate form for use in the order form.
On the order form I have a list price box which pulls the list price from the table on which I have placed the following on before update:
This works fine for the conversion, however we need to be able to overwrite this value from time to time as some of the contracts we recieved are already in the correct currency and value. When I try to overwrite this I get a runtime error 2115.
Can someone please suggest how I can allow it to overwrite??
Cheers
On the order form I have a list price box which pulls the list price from the table on which I have placed the following on before update:
Code:
Me.TxtListPrice.Value = Me.TxtListPrice.Value * g_dblConversion
Can someone please suggest how I can allow it to overwrite??
Cheers