Topic: convert number to word

how can i we convert number to word

Ex: 100 to one hundred

Re: convert number to word

Hello Chantait

This could help you :

You place two EditBox on your form : one for numbers, one for letters

procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
begin
     if ValidFloat(Form1.Edit1.Text) then
         Form1.Edit2.Text:=ToWords(Form1.Edit1.Value);
end;

Have a good day

JB

Re: convert number to word

chanthait wrote:

how can i we convert number to word

Ex: 100 to one hundred

Follow this post for more examples
http://myvisualdatabase.com/forum/viewtopic.php?id=4480
Regards

@thezimguy

Re: convert number to word

thanks

Re: convert number to word

Hi Team

Can we convert number to chinese number

Re: convert number to word

Hello.


Unfortunately no.

Dmitry.