FastReport调用Delphi中的自定义函数(人民币大写金额)mtm

Posted 我的学习笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FastReport调用Delphi中的自定义函数(人民币大写金额)mtm相关的知识,希望对你有一定的参考价值。

1. 在 FormCreate 中向FastReprot添加函数 (fPrint)窗口

procedure TfPrint.FormCreate(Sender: TObject);

  frxReport1.AddFunction(‘function MoneySpeechC(pMoney: Currency): String;‘,‘Myfunction‘,‘人民币大写金额转换函数‘);

end;

 

2. 在FastReport用户函数事件中添加 OnUserFunction

技术分享图片
function TfPrint.frxReport1UserFunction(const MethodName: string; var Params: Variant): Variant;
begin

  if UpperCase(MethodName) = UpperCase(‘MoneySpeechC‘) then
     Result := MoneySpeechC(Params[0]);

end;
技术分享图片

 

3.     在FastReport , memo6 的 OnAfterData 事件中插入如下代码

技术分享图片
procedure Memo6OnAfterData(Sender: TfrxComponent);
begin

   //-------
   memo6.text := MoneySpeechC(memo6.Value);
   
end;
技术分享图片

以上是关于FastReport调用Delphi中的自定义函数(人民币大写金额)mtm的主要内容,如果未能解决你的问题,请参考以下文章

DELPHI fastreport iif判断的问题

请问谁有fastreport4.9 支持delphi 2010 自动安装的版本

如何在fastreport中添加我的自定义函数

求教delphi 中fastreport报表的问题

DELPHI 下fastreport打开指定目录中的报表文件怎么写语句

delphi中的showmessage函数是调用的哪个API函数