Conversion for inches to mm

G

Geoffrey

Hi Everyone,

I am designing the new DB for my company, when i get the new order for
customer, sometime they are using inches , but we are using mm for our
factory, i was wondering how can i change the design for my order entry, i
can input inches to conversion mm , when i generate the internal paper word,
also print the inches for the order confirmation.


Thank you
 
A

Allen Browne

What do you want to store?

Could you use an unbound text box to enter the inches? Then add some code to
it's event procedure like this:
Me.[MyMM] = Me.[MyInches] * 25.4

Substitute the names of your text boxes in brackets.
 
Top