哪个组件可发做WEB方式的报表?????听说Rave可以作出WEB方式的报表????谁会啊?? (100分)

  • 主题发起人 主题发起人 abc_xp
  • 开始时间 开始时间
A

abc_xp

Unregistered / Unconfirmed
GUEST, unregistred user!
听说Rave可以作出WEB方式的报表????谁会啊??

搞个例子看看
 
is there anyone know?
 
没有人会吗?
自己顶一下
 
可以用水晶报表呢!
 
哪里有得下?
 
可以编写组件,与数据库连接,然后rvproject.execute
 
在网上找 了一下,发现水晶报表都是FOR VB的,有没有FOR DELPHI
 
没有人会吗?
 
上去看看:http://www.soft2web.com
http://www.skycn.com/soft/9882.html
 
上去看看:http://www.soft2web.com
http://www.skycn.com/soft/9882.html
 
Subject: Re: ReportBuilder or Rave Reports
From: "Jerry Clancy"
Newsgroups: atozedsoftware.intraweb.third-party

Here are some steps to try with the code-based Rave components:

* Drop a ReportSystem component on your Datamodule.
* Set this property: ReportSystem1.DoNativeOutput := False;
* Set the appropriate output parameters to file, not printer.
* Kill Status reporting, anything that would locally pop a form
* Set the FileName and path -- use the "files" directory for output, setting
type to .rtf or .htm, as appropriate to which report type you are
generating.
* Drop an RPRenderHTML and/or an RPRenderPDF component on the form
* Set the Render object for the specific report, eg
ReportSystem1.RenderObject := RPRenderPDF1;
* Code your ReportSystem events (BeforePrint, Header, Print, etc.)
* Execute them with ReportSystem1.Execute.
* Return the generated file with the following:
const
AIPOptions: string =
'toolbar=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,location=no,d
irectories=no,width=780,height=580';
AIPNewWindow: string = 'NewWindow("%s", "%s", "%s");'; { A mask for the
Format }
....
....
AIPURL := WebApplication.URLBase + '/filesNC/' + sFileName;
AddToInitProc('NewWindow("' + AIPURL + '", "Agenda", "' + AIPOptions
+'");');

There's your blueprint.
 
自己再提一下
 
多人接受答案了。
 
后退
顶部