分享
 
 
 

在 Visual Studio .NET中使用Crystal Report(下)

王朝c#·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

在 Visual Studio .NET中使用Crystal Report(下)

from www.aspfree.com

translated by cash(天下第七)

cashcao@msn.com

Crystal Report 演示-使用Push Model

下面看看如何使用Push Model实现Crystal Reports

1.创建一个设计时的dataset

2.创建一个.rpt文件并指向我们前面创建的dataset

3.在.aspx页面上放置Crystal Report Viewer控件,设定它的属性指向上一步创建的.rpt文件。

4.在code behind page中,书写连接数据库的函数

5. 加上databind方法。

创建一个设计时的dataset去定义Reports的Fielsds.

1)在"Solution Explorer"右击,选择"Add" --> select "Add New Item--> Select "DataSet"

2) 从"Server Explorer"面板中的"SQL Server"中拖进"Stores"表

3) 这将在dataset中创建一个"Stores" table

用这种方法创建的.xsd文件仅仅包含了field的定义,里面没有任何数据。需要你创建一个与数据库的链接并且将数据填充进去。

创建.rpt文件

4)创建一个.rpt文件。与前面唯一不同的是不通过Crystal Report得到表,我们将用dataset来创建它。

5)建立.rpt文件后,右击"Details" section,选择"Add/Remove Database"

6) 在"Database Expert"窗口,展开"Project Data",展开"ADO.NET DataSet","DataSet1", 选择 "Stores" table.

7)点击">"将"Stores" table包括进"Selected Tables"

8) 接下来设定report的布局。

创建一个Crystal Report Viewer Control

9) 接下来的步骤是用PULL Model创建一个Crystal Report viewer Control并设定它的属性。

改code behind page 代码:

10)为你的page load里设计如下了程序:

Sub BindReport()

Dim myConnection As New SqlClient.SqlConnection()

myConnection.ConnectionString= "server= (local)\NetSDK;database=pubs;Trusted_Connection=yes"

Dim MyCommand As New SqlClient.SqlCommand()

MyCommand.Connection = myConnection

MyCommand.CommandText = "Select * from Stores"

MyCommand.CommandType = CommandType.Text

Dim MyDA As New SqlClient.SqlDataAdapter()

MyDA.SelectCommand = MyCommand

Dim myDS As New Dataset1()

'This is our DataSet created at Design Time

MyDA.Fill(myDS, "Stores")

'You have to use the same name as that of your Dataset that you created during design time

Dim oRpt As New CrystalReport1()

' This is the Crystal Report file created at Design Time

oRpt.SetDataSource(myDS)

' Set the SetDataSource property of the Report to the Dataset

CrystalReportViewer1.ReportSource = oRpt

' Set the Crystal Report Viewer's property to the oRpt Report object that we created

End Sub

注意:在上面的代码中,你可能会注意到oRpt对象是"Strongly Typed" Report file的一个实例。 如果我们用"UnTyped" Report,我们将不得不使用ReportDocument 对象并且手工load这个report文件进去。

运行你的程序

11) F5 运行。

输出report文件到另一种格式

你可以选择将你的report文件输出成以下格式:

1. PDF (Portable Document Format)

2. DOC (MS Word Document)

3. XLS (MS Excel Spreadsheet)

4. HTML (Hyper Text Markup Language – 3.2 or 4.0 compliant)

5. RTF (Rich Text Format)

事实上,你可以放置一个button来引发一个输出函数。

输出一个以Pull Model创建的report文件

当输出一个以Pull Model创建的report文件的时候,Crystal Report对与数据库的连接及所需的记录很敏感,所以你只可使用下面提供的代码:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim myReport As CrystalReport1 = New CrystalReport1()

'Note : we are creating an instance of the strongly-typed Crystal Report file here.

Dim DiskOpts As CrystalDecisions.Shared.DiskFileDestinationOptions = New CrystalDecisions.Shared.DiskFileDestinationOptions()

myReport.ExportOptions.ExportDestinationType = CrystalDecisions.[Shared].ExportDestinationType.DiskFile

' You also have the option to export the report to other sources

' like Microsoft Exchange, MAPI, etc.

myReport.ExportOptions.ExportFormatType = CrystalDecisions. [Shared].ExportFormatType.PortableDocFormat

'Here we are exporting the report to a .pdf format. You can

' also choose any of the other formats specified above.

DiskOpts.DiskFileName = "c:\Output.pdf"

'If you do not specify the exact path here (i.e. including

' the drive and Directory),

'then you would find your output file landing up in the

'c:\WinNT\System32 directory - atleast in case of a

' Windows 2000 System

myReport.ExportOptions.DestinationOptions = DiskOpts

'The Reports Export Options does not have a filename property

'that can be directly set. Instead, you will have to use

'the DiskFileDestinationOptions object and set its DiskFileName

'property to the file name (including the path) of your choice.

'Then you would set the Report Export Options

'DestinationOptions property to point to the

'DiskFileDestinationOption object.

myReport.Export()

'This statement exports the report based on the previously set properties.

End Sub

输出一个由Push Model创建的report文件

当输出一个由Push Model创建的report文件时,第一步是必需手工创建一个连接并绑定数据库。设定这个reports的‘SetDataSource’为此dataset(如前所述)。然后就可以调用上面所示的代码了。

_______________________________________________________________________________

提交者:

Ajay Varghese & Shankar N.S.

Sr. Software Engineers,

Jarvis Infotech

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有