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?

Community
  • 1
  • 1
  • 1
    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

1 Answers1

1

Convert integers to 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

Community
  • 1
  • 1
TheTXI
  • 37,429
  • 10
  • 86
  • 110