有关FASTREPORT的问题???(100分)

  • 主题发起人 主题发起人 dxj1976
  • 开始时间 开始时间
D

dxj1976

Unregistered / Unconfirmed
GUEST, unregistred user!
FASTREPORT现在的最新的版本是多少??
那位高手有用FASTREPORT开发的报表完整事例,能否给我这个菜鸟寄一份。以便参考学习。
wyngdxj1976@163.com
不胜感激!!!
 
装好了后,在其目录下不就有一个DEMO,这也是我所知的最完整的例子了。
最高?似乎是2.5吧
 
app2001:谢谢你的回答。我还想请教你。在FASTREPORT可以写脚本,但怎么写?它有自己的函数吗?
 
>>它有自己的函数吗?
String functions
----------------
Str(<value>). Converts number given in value to a string.
Copy(<string>, <from>, <count>). Returns a substring of <string> with length <count> characters , starting at <from>, (same as Delphi function).
If(<expression>, <string1>, <string2>). Returns string <string1>, if expression expression is true;
otherwise returns <string2>.
FormatFloat(<formatstr>, <value>). Converts a numericaly significant value in string, making use of the mask in formatstr. The possible values of <formatstr> are described in the Delphido
cumentation’s, “Formatting strings” topic.
FormatDateTime(<formatstr>, <value>). Converts a date/time value to a string, making use of the mask in <formatstr>. The possible values of <formatstr> are as described in the Delphido
cumentation’s, “Formatting strings” topic.
StrToDate(<value>). Converts the string <value> to a date.
StrToTime(<value>). Converts the string <value> to a time.
UpperCase(<value>). Converts the string <value> to all upper case.
LowerCase(<value>). Converts the string <value> to all lower case.
NameCase(<value>). Converts the first character of string <value> to upper case and the remaining characters to lower case.
Length(<string>). Returns the length of <string>.

Trim(<string>). Trims (removes) all spaces at the begin
ning and end of <string> and returns the result.
Pos(<substring>, <string>). Returns the position of <substring> in the given <string>.
Arithmetic functions
--------------------
Int(<value>). Returns the whole part of the number <value>.
Frac(<value>). Returns the fractional part of the number <value>.
Round(<value>). Returns rounded number.
value1 Mod value2. Returns the remainder resulting from dividing <value1> by <value2>.
MinNum(<value1>, <value2>). Returns the smaller of the two values.

MaxNum(<value1>, <value2>). Return the greater of the two values.
>>在FASTREPORT可以写脚本,但怎么写?
看看手册,比较简单,但要灵活使用,还需要一定的功力[:)]
下载
http://www.2ccc.com/article.asp?articleid=22
 
你随便找个TfrReport放桌上,双击后进入其编辑环境,然后在属性框中有一个OnBeforePrint,点击进去后,又弹出一个文本编辑器,这个就是写脚本的地方
具体的使用你看看这个吧
http://www.2ccc.com/article.asp?articleid=22
标 题:FastReport v2.4开发指南
 
多人接受答案了。
 
后退
顶部