number - alphabetical string

  • Thread starter Thread starter Florin
  • Start date Start date
Where can I find a function to transform number in alphabetical string ?

What sort of conversion? Do you want to transform the number 6 to the
alphabetical string "6" (CStr will do that for you), or the number 65 to the
letter "A" - its ASCII equivalent (Chr() is the function for this? Or do you
want to transform the number 6 to the text string "Six"?
 
Back
Top