I want to easily convert fields displayed within a system
from one currency to another, in my case this is Pound to
Euro. Currently our code has
LblDisplayValue.Caption = format(curValue,”Currency”)
I know that it is possible to change the Currency part
to be the name of a function, e.g.
LblDisplayValue.Caption = Format(curValue,ConvertEuro)
and the function will be called, however is it possible
to pass the value to be formatted to the function.
Thanks,
Richard.
from one currency to another, in my case this is Pound to
Euro. Currently our code has
LblDisplayValue.Caption = format(curValue,”Currency”)
I know that it is possible to change the Currency part
to be the name of a function, e.g.
LblDisplayValue.Caption = Format(curValue,ConvertEuro)
and the function will be called, however is it possible
to pass the value to be formatted to the function.
Thanks,
Richard.