convert feet to meteres upon text box entry

R

reservedbcreater

does anyone have the code handy to convert
feet to meters upon a vlue being entered into a text box
 
G

Graham R Seach

ft / 3.28083989501312

Public Function Feet2Metres(ft As single) As Single
Feet2Metres = ft / 3.28083989501312
End Function

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
Top