摘要: Writing Custom Wizards 编写自定义的向导 You can extend FastReport's functionality with the help of custom wizards. FastReport, for example, contains the standard “Report Wizard” which is called from the ... 阅读全文
posted @ 2016-05-26 16:38 翼想天开的男孩 阅读(258) 评论(0) 推荐(0) 编辑
摘要: Using Custom Functions in a Report 在报表中使用自己义函数 FastReport has a large number of built-in standard functions for use in report designs. FastReport also allows custom functions to be written and us... 阅读全文
posted @ 2016-05-26 16:32 翼想天开的男孩 阅读(395) 评论(0) 推荐(0) 编辑
摘要: Writing Custom DB Engines 编写定制的DB引擎 FastReport can build reports not only with data sourced from a Delphi application but also from data sources (connections to DBs, queries) created within the r... 阅读全文
posted @ 2016-05-26 16:18 翼想天开的男孩 阅读(372) 评论(0) 推荐(0) 编辑
摘要: Writing Property Editors 编写属性编辑器 When you select a component in the designer its properties are displayed in the object inspector. You can create your own editor for any property. The “Font” prope... 阅读全文
posted @ 2016-05-26 15:56 翼想天开的男孩 阅读(433) 评论(0) 推荐(0) 编辑
摘要: Writing Component Editors 编写组件的编辑器 All common control editors (opened from a control's context menu or by double-clicking) create blank OnClick event handlers by default. This behavior can be alt... 阅读全文
posted @ 2016-05-26 15:20 翼想天开的男孩 阅读(266) 评论(0) 推荐(0) 编辑
摘要: Component Registration in Script System 在脚本系统中注册组件 To refer to our component from a script, the class, its properties and methods must first be registered in the script system. You may place the r... 阅读全文
posted @ 2016-05-26 13:56 翼想天开的男孩 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Event Handler Description 事件处理描述 (自定义控件) How should a new event handler be defined if it does not already belong to the base class? Let's look at this using the “TfrxEditControl” common control as... 阅读全文
posted @ 2016-05-26 13:43 翼想天开的男孩 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 摘要:介绍如何编写自定义的控件,用在报表的窗体上(如Edit,Button等) Writing Custom Common Controls 编写自定义控件 FastReport contains a set of common controls which can be placed on dialogue forms inside reports. They are as follo... 阅读全文
posted @ 2016-05-26 12:01 翼想天开的男孩 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 摘要:简单介绍了如何编写一个FastReport的组件,并且注册到FastReport中使用。 Writing Custom Report Components 编写自定义报表组件 FastReport has a large number of components that can be placed on a report design page. They are: text, ... 阅读全文
posted @ 2016-05-26 11:38 翼想天开的男孩 阅读(272) 评论(0) 推荐(0) 编辑
摘要: "TfrxComponent" is the base class for all FastReport components. Objects of this type have attributes such as “coordinates”, “size”, “font” and “visibility” and have lists of subordinate objects.... 阅读全文
posted @ 2016-05-26 10:38 翼想天开的男孩 阅读(458) 评论(0) 推荐(0) 编辑