Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone help me make a money denomination program in VB.NET. The problem is when you enter a number the program should convert it to word format.

If you enter in

'98534671.23'

the program should convert it to

"ninety eight million five hundred thirty four thousand six hundred 
seventy one and twenty three cents".

See Also:

How can I convert an integer into its verbal representation?

share|improve this question
I don't know whether to vote to close or not seeing as how the previous dupe examples are for C# and not VB.NET. I know you can easily translate between the two, but I don't know if it could be considered an exact dupe. – TheTXI Mar 20 '09 at 14:47
Also, the other posts do not take into account the parts after the decimal point (the cents). – TheTXI Mar 20 '09 at 14:49

marked as duplicate by Chad Birch, Alex Fort, chills42, Ian Nelson, cgreeno Mar 20 '09 at 14:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers

You should be able to use this topic to help you. All you should have to do is convert the code from C# to VB.NET

share|improve this answer