Page 1 of 1

If Possible NumberToWord and WordToNumber

Posted: Wed Jul 26, 2006 8:21 am
by MARIMUTHU K
Hi hi hi,
I have worked CR 9.0 but now I am working StiReport
So please clarify my doubts,

How is used to NumbertoWord, WordToNumber and some valuable function, It's avilable StiReport if posible Where it?


Advance Thank u.


Regards,
KMarimuthu.

If Possible NumberToWord and WordToNumber

Posted: Wed Jul 26, 2006 8:50 am
by Edward
KMarimuthu wrote:Hi hi hi,
I have worked CR 9.0 but now I am working StiReport
So please clarify my doubts,
How is used to NumbertoWord, WordToNumber and some valuable function, It's avilable StiReport if posible Where it?
Advance Thank u.
Regards,
KMarimuthu.
This functions are availiable in StimulReport.Net version 1.61. To receive patch please contact Image. Please specify .Net version you use. If you are not registered user please contact us anyway.
Thanks!

If Possible NumberToWord and WordToNumber

Posted: Thu Jul 27, 2006 7:01 am
by MARIMUTHU K
Hi hi hi,

Mr. Edward,

Now I am using StiReport 1.61 , but we can't find NumberToWord fn . so Please kindly tell that correct way or Procedure.


Regards,
KMarimuthu.



If Possible NumberToWord and WordToNumber

Posted: Thu Jul 27, 2006 7:38 am
by Vital
Some examples:

Expression 1:

Code: Select all

{Func.En.NumToStr(1234567, true)}
You will receive:

Code: Select all

One million two hundred and thirty-four thousand five hundred and sixty-seven

Expression 2:

Code: Select all

{Func.En.NumToStr(1234567, false)}
You will receive:

Code: Select all

one million two hundred and thirty-four thousand five hundred and sixty-seven

Expression 3:

Code: Select all

{Func.En.CurrToStr(1234567.23, true, true)}
You will receive:

Code: Select all

One million two hundred and thirty-four thousand five hundred and sixty-seven dollars and  twenty-three cents

Expression 4:

Code: Select all

{Func.En.CurrToStr(1234567.23)}
You will receive:

Code: Select all

One million two hundred and thirty-four thousand five hundred and sixty-seven dollars and  twenty-three cents

Thanks.