Im working in vs 2003 and im developing a web app for our financial department.

On the last meeting they made a somewhat strange request..
They want all currency to be represented like this:

45 000,50 = correct (45 and a half milllion)

So I tried using the cultureinfo of swedish, and to my surprise it became:

4.550.000,00 kr which is swedish currency.

I asked the economist and he said his format was SS ISO 31-0

How is it possible for me to convert a decimal number to his format?? I mean without writing 100 lines of cumbersome logic and string parsing...

/Henrik