Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing currency format from dollar to euro

Status
Not open for further replies.

zickler

Technical User
Mar 6, 2004
28
IE
I am using a free donload shopping cart a.shopKart for a project but it is set up to use dollars, I want to change the currency format to euro or sterling can I change this in the Access database, if so how please ?

Thanks in advance
 
Hi,

I avoid the currency format in favour of decimal format to reduce the risk of errors caused by floating point calculations.

I use a table to store the currency symbol (and other information), then draw it off from an invisible form (currency):

TextBox = Form![currency].[curr_symbol] & [currency_field]

your main form might want to open the currency form in invisible mode, using it's OnOpen event.

This allows your users to choose any symbol they like.

hope this helps,

Garry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top