Numbers to words - possible?

  • Thread starter Thread starter Severin
  • Start date Start date
S

Severin

I have searched help files galore but have come up frustrated...

I am looking for the functionality of converting a number into it's
equivalent word -- such as 12 to Twelve, or 125 to One Hundred Twenty-Five.

Is this function built into the framework or no? It seems that it works
along the lines of Date.ToLongDateString

I suppose I could build that function myself, but I only have the standard
version of Visual Basic, and would have to import that module into each
project that needed it (standard will not easily compile to a .dll)

Severin
 
Hi,

You will have to do this yourself, but a search on google will return plenty
of code to do the job.

Hope this helps

Chris Taylor
 
¤ I have searched help files galore but have come up frustrated...
¤
¤ I am looking for the functionality of converting a number into it's
¤ equivalent word -- such as 12 to Twelve, or 125 to One Hundred Twenty-Five.
¤
¤ Is this function built into the framework or no? It seems that it works
¤ along the lines of Date.ToLongDateString
¤
¤ I suppose I could build that function myself, but I only have the standard
¤ version of Visual Basic, and would have to import that module into each
¤ project that needed it (standard will not easily compile to a .dll)

Nothing built-in but there's plenty of code:

http://makeashorterlink.com/?Z184258E5


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top