"Liz" <> wrote in message
news:ncNzc.40482$eu.27737@attbi_s02...
>
> "Neill" <> wrote in message
> news:Q_Kzc.45399$. com...
> > I'm working on a shopping cart application and need to crunch some
> currency
> > numbers. This has been discussed on mailing lists I monitor, and it
seems
> > the recommended way is to create a currency class. Any pointers,
examples,
> > suggestions? TIA
> > --
> >
> > Neill Laney
> > http://www.laneyconsulting.com
> >
>
> If you don't want to go insane you will want to tap into a "web service"
> that you can "consult", perhaps using SOAP, for each transaction. The
> exchange rate changes quickly, so you will need to record the parameters
> for each transaction for further processing; you can't go back and do
> another
> lookup because the value will have changed. Maybe need to store this in a
> database.
Thanks, in fact,
http://www.strikeiron.com offers just that. I'm not doing
conversions, just simple addition and multiplying. BigInteger is working
fine for now, just curious about statements I've heard made about creating
your own currency class to handle financial calculations.