i have an 08 project that has 50 forms and 28 modules that outputs hundreds if not thousands of metric measurements with labels showing "lm" for lineal meters or "m2" for square meters.

I am wanting to also have the project output imperial measurements as in "ft" feet and "sqft" square feet.

I know i can write hundreds of lines of code like below to do this:

Code:
 if checkbox_imperial.checked 
xxlbl.text = sqfeet
end if
But am hoping there will be a easier way before i begin.

What is the typical way to handle both metric and imperial measurements for different eviroments?

thx in advance...