vote up 1 vote down star

I have managed to design a report the way I want but I am not able to get Rave Report to print/convert Grand total to Words like for example if the grand total is 1,200.00 it should print One Thousand and Two Hundred only.

Is something like this possible in Rave Report?

flag

69% accept rate

1 Answer

vote up 1 vote down check

I do not think Rave Reports has any inbuilt function which converts numbers to works. However, I have found a article, which explains How to Convert Numbers (Currency) to Words, on About.com.

Have a look at the ConvertToWords function in the NumberToWords unit.

You could convert the number and pass the words to the report at runtime.

Edit:

You can pass parameters to your reports like this.

  RvProject.Open;
  RvProject.SelectReport('ParametrizedReport',False);
  RvProject.SetParam('Name','Leonel');
  RvProject.Execute;
  RvProject.Close;

Have a look at the Introduction to Rave Reports article.

link|flag
Thanks for this link. How do I set text in a Rave Report from Delphi code? I don't know of any way by which I can manipulate content of a Rave Report when it is rendering or after it has rendered a page. – Yogi Yang 007 Jun 17 at 6:15
I have expanded my answer with an example of how to pass parameters to a rave report. – stukelly Jun 17 at 6:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.