If Possible NumberToWord and WordToNumber
-
- Posts: 101
- Joined: Wed Jul 26, 2006 8:03 am
- Location: CHENNAI-TN, INDIA
If Possible NumberToWord and WordToNumber
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.
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.
Marimuthu K
If Possible NumberToWord and WordToNumber
This functions are availiable in StimulReport.Net version 1.61. To receive patch please contactKMarimuthu 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.

Thanks!
-
- Posts: 101
- Joined: Wed Jul 26, 2006 8:03 am
- Location: CHENNAI-TN, INDIA
If Possible NumberToWord and WordToNumber
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.
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.
Marimuthu K
If Possible NumberToWord and WordToNumber
Some examples:
Expression 1:
You will receive:
Expression 2:
You will receive:
Expression 3:
You will receive:
Expression 4:
You will receive:
Thanks.
Expression 1:
Code: Select all
{Func.En.NumToStr(1234567, true)}
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)}
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)}
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)}
Code: Select all
One million two hundred and thirty-four thousand five hundred and sixty-seven dollars and twenty-three cents
Thanks.