众果搜的博客

脚踏大地,仰望星空,致力于财经投资网站导航与在线网络工具的开发与普及

Search(博客搜索)

热文排行

最近发表

最新评论及回复

« 如何替换explorer.exe文件?如何修复explorer文件?测绘局官方网站网址 »

费了好大力气找到水晶报表绑定

在Vs.net2005中,水晶报表Crystal   Report又进行了改动,使得原来在2003中运行正常的代码均无法使用。搜索遍CSDN论坛也没有找到解决办法,还是Google有用,找到Crystal   Report同数据源DataSet的绑定办法。注意加粗的哪些。                             Bind   the   report   to   the   viewer                                                                                       CrystalDecisions.CrystalReports.Engine.ReportDocument   oRpt   =   " "在Vs.net2005中,水晶报表Crystal Report又进行了改动,使得原来在2003中运行正常的代码均无法使用。搜索遍CSDN论坛也没有找到解决办法,还是Google有用,找到Crystal Report同数据源DataSet的绑定办法。注意加粗的哪些。
Bind the report to the viewer


[b]CrystalDecisions.CrystalReports.Engine.ReportDocument oRpt =
    new CrystalDecisions.CrystalReports.Engine.ReportDocument();

oRpt.Load(@"C:\Inetpub\wwwroot\FantasyReports\PlayerWithYards.rpt");
FFAssistantDataSet oDataSet = new FFAssistantDataSet();
PlayersTableAdapter oPlayers = new PlayersTableAdapter();
String strConn =
    ConfigurationManager.ConnectionStrings["FFAssistantConnectionString"].ToString();
oPlayers.MainConnection = strConn;
oPlayers.Fill(oDataSet.Players);
TeamsTableAdapter oTeams = new TeamsTableAdapter();
oTeams.MainConnection = strConn;
oTeams.Fill(oDataSet.Teams);
StatsTableAdapter oStats = new StatsTableAdapter();
oStats.MainConnection = strConn;
oStats.Fill(oDataSet.Stats);
PositionsTableAdapter oPositions = new PositionsTableAdapter();
oPositions.MainConnection = strConn;
oPositions.Fill(oDataSet.Positions);
oRpt.SetDataSource(oDataSet);
CrystalReportViewer1.ReportSource = oRpt;

原文见这里:http://aspalliance.com/669

  • 相关文章:

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

Powered By Z-Blog 1.8 Spirit Build 80722 Code detection by Codefense

Copyright www.zhongguosou.com. Some Rights Reserved.微信号:MiZhiHeiGeTaXiaoMi