tags:

views:

195

answers:

1

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?

+1  A: 

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

TheTXI