conversion factors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi Guys:

Any one out there know a conversion function that goes from (1) liquid
milliter to ounces and (2) gallons to ounces, going from milliter to ounes?
The second set of fields are (2) called "txt_Gallons" and "txt_Ounces1"
converting from gallons to ounces.

Any ideas or code snippets that will do these conversions will be welcome
and appreciated.

Thanks.
 
Hope this helps

There are
29.5735295625 milliters to a fluid ounce
128 ounces in a gallon

If you are going to use a textbox for the users input' then

milliter to ounce
(me.txtmilliters) users input
me.txtounces = me.txtmilliters / 29.5735295625

gallons to ounces
(me.txtgallons) users input
me.txtounces1 = me.txtgallons * 128

David
 
Back
Top