sdz
|
| Posted: 04/01/2002, 3:28 PM |
|
thanks in advance, i don't know how to format a number with mask for currency field in the before show forms, any help?
|
|
|
 |
sdz
|
| Posted: 04/01/2002, 4:57 PM |
|
I have used fldprice = FormatCurrency (price) and the form shows 0.00EurosSymbol, not the currency field,nor the quantity, please help.
|
|
|
 |
Nicole
|
| Posted: 04/01/2002, 11:54 PM |
|
Hello,
you use incorrect variable name. Var name that contains field value consists of 2 parts:
fld+fieldname
Use this code:
fldprice = FormatCurrency(fldprice)
where "price" is field name
|
|
|
 |
|