J
Jay
Hi Guys:
Any one out there know a conversion function that goes from (1) liquid
litters to ounces and (2) gallons to ounces (txt_Litters to txt_Ounces)?
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.
Code I have now looks like this;
Private Sub txt_NetLiquidOunces_AfterUpdate()
If Me.txt_Litters = <>"" Then
txt_Ounces = Me.txt_Litters / 29.5735295625
End If
End Sub
If you can think of a way to improve on it, by all means do chime in!
Thanks
Any one out there know a conversion function that goes from (1) liquid
litters to ounces and (2) gallons to ounces (txt_Litters to txt_Ounces)?
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.
Code I have now looks like this;
Private Sub txt_NetLiquidOunces_AfterUpdate()
If Me.txt_Litters = <>"" Then
txt_Ounces = Me.txt_Litters / 29.5735295625
End If
End Sub
If you can think of a way to improve on it, by all means do chime in!
Thanks