Converter

me3

Registered User.
Local time
Today, 05:03
Joined
Nov 23, 2014
Messages
13
Hi all,

A bit of a longshot me thinks! But anyway... can you make a measurement converter on Access 2013. I would like to be able to convert meters into feet and feet into meters!

Thanks
 
AHH, nice - any ideas how? cheers
 
approx.

feet = metres * 39.37 /12

metres = feet*12 / 39.37
 
start with a simple feet/meters convertor
create a new form, then create 2 text boxes and a button onto it
the idea is to input text into textbox0 and get the answer in textbox1 by clicking the button
use the On Click event of the button to create an Event Procedure and input some code
in the module type in: Text1 = 0.3048 * Text0
Text1 being the name of the 2nd text box and Text0 being the name of the 1st text box
 
start with a simple feet/meters convertor
create a new form, then create 2 text boxes and a button onto it
the idea is to input text into textbox0 and get the answer in textbox1 by clicking the button
use the On Click event of the button to create an Event Procedure and input some code
in the module type in: Text1 = 0.3048 * Text0
Text1 being the name of the 2nd text box and Text0 being the name of the 1st text box

Jobs a goodun! That works lovley - thankyou very much
 

Users who are viewing this thread

Back
Top Bottom