|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
完全不一样的。.net其实我也说不太清,.net可以把他理解为跟J2EE相对的工具。c++主要做系统相关的开发你要学.net的话就应该学C#。(其实微软在.NET平台上也考虑了给C++留一个地位。 赫赫有名的CrystalReports(水晶报表)已内嵌为微软VisualStudio.NET的尺度报表工具,同时晋级到CrystalReportsforVisualStudio.NET。它的长处是:1、在.NET平台可以轻松创立交互式的、高质量展现的报表内容,这也是CrystalReports临时以来所具有的次要上风;2、利用CrystalReportsforVisualStudio.NET,能够在Web平台和Windows平台上承载报表,并将Crystal报表作为报表Web服务在Web服务器上公布;3、使用CrystalReport创立的Web使用程序,利用户能够深化图表并依据必要选择信息。在.NET中,图表实践上就是一个与使用程序中其他控件举行交互的Crystal报表。在这里我向人人先容怎样在Windows窗体使用程序中扫瞄水晶报表。
计划步骤:
1、软件情况:请求体系已安装VisualStudio.Net集成开辟体系,仅装有.NetFrameworkSDk不克不及完成本例效果,成为.NetFrameworkSDK没有水晶报表控件。
2、新建一个VisualC#项目Windows使用程序,设置Form1的Text="水晶报表扫瞄器",StartPosition=CenterScreen//程序入手下手呈现在屏幕中心,别的属性均坚持默许;
3、从工具箱拖进一个CrystalReportViewer,一个Button,一个openFileDialog,到窗体。
全部计划器的窗体结构只需将button1置于窗体底边中部,不再必要别的过剩结构。
设置crystalReportViewer1的属性以下:
this.crystalReportViewer1.Dock=System.Windows.Forms.DockStyle.Fill;
//停靠体例为充斥全部窗体
//睁开+DockPadding
this.crystalReportViewer1.DockPadding.Bottom=50;
//底部空出安排Button的地区
this.crystalReportViewer1.DockPadding.Left=5;
this.crystalReportViewer1.DockPadding.Right=5;
this.crystalReportViewer1.DockPadding.Top=5;
this.crystalReportViewer1.ReportSource=null;
//先不载进报表资本
设置button1的属性以下:
this.button1.Anchor=System.Windows.Forms.AnchorStyles.Bottom;
//与窗体的下边坚持流动
this.button1.Text="翻开报表";
openFileDialog1是翻开文件的控件,设置其属性以下:
this.openFileDialog1.Filter
="CrystalReport(*.rpt)|*.rpt|一切文件(*.*)|*.*";
//供应翻开文件对话框的文件范例,
默许范例就是此字符串的最前一种界说的范例
this.openFileDialog1.Title="翻开水晶报表";
//翻开文件对话框的题目
结构最终效果以下:
4、双击button1,增加button1_Click点击事务:
privatevoidbutton1_Click(objectsender,System.EventArgse)
{
try
{
if(openFileDialog1.ShowDialog()==DialogResult.OK)
this.crystalReportViewer1.ReportSource=@openFileDialog1.FileName;
//加载水晶报表,将报表文件绑定到CrystalReportView控件;
}
catch(Exceptionerror)
{
MessageBox.Show(error.ToString(),"毛病");
}
}
5、OK!按Ctrl+F5运转吧。
能够扫瞄你体系内现有的报表实例:
...ProgramFilesMicrosoftVisualStudio.NETCrystalReportsSamplesReportsFeatureExamplesChart.rpt
usingSystem;
usingSystem.Drawing;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Windows.Forms;
usingSystem.Data;
namespaceWindowsApplication10
{
///<summary>
///Form1的择要申明。
///</summary>
publicclassForm1:System.Windows.Forms.Form
{
privateCrystalDecisions.Windows.Forms.CrystalReportViewercrystalReportViewer1;
privateSystem.Windows.Forms.Buttonbutton1;
privateSystem.Windows.Forms.OpenFileDialogopenFileDialog1;
///<summary>
///必须的计划器变量。
///</summary>
privateSystem.ComponentModel.Containercomponents=null;
publicForm1()
{
//
//Windows窗体计划器撑持所必须的
//
InitializeComponent();
//
//TODO:在InitializeComponent挪用后增加任何机关函数代码
//
}
///<summary>
///清算一切正在利用的资本。
///</summary>
protectedoverridevoidDispose(booldisposing)
{
if(disposing)
{
if(components!=null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
#regionWindowsFormDesignergeneratedcode
///<summary>
///计划器撑持所需的办法-不要利用代码编纂器修正
///此办法的内容。
///</summary>
privatevoidInitializeComponent()
{
this.crystalReportViewer1=new
CrystalDecisions.Windows.Forms.CrystalReportViewer();
this.button1=newSystem.Windows.Forms.Button();
this.openFileDialog1=newSystem.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
//crystalReportViewer1
//
this.crystalReportViewer1.ActiveViewIndex=-1;
this.crystalReportViewer1.Dock=System.Windows.Forms.DockStyle.Fill;
this.crystalReportViewer1.DockPadding.Bottom=50;
this.crystalReportViewer1.DockPadding.Left=5;
this.crystalReportViewer1.DockPadding.Right=5;
this.crystalReportViewer1.DockPadding.Top=5;
this.crystalReportViewer1.Name="crystalReportViewer1";
this.crystalReportViewer1.ReportSource=null;
this.crystalReportViewer1.Size=newSystem.Drawing.Size(292,273);
this.crystalReportViewer1.TabIndex=0;
//
//button1
//
this.button1.Anchor=System.Windows.Forms.AnchorStyles.Bottom;
this.button1.Location=newSystem.Drawing.Point(104,240);
this.button1.Name="button1";
this.button1.TabIndex=1;
this.button1.Text="翻开报表";
this.button1.Click+=newSystem.EventHandler(this.button1_Click);
//
//openFileDialog1
//
this.openFileDialog1.Filter="CrystalReport(*.rpt)|*.rpt|一切文件(*.*)|*.*";
this.openFileDialog1.Title="翻开水晶报表";
//
//Form1
//
this.AutoScaleBaseSize=newSystem.Drawing.Size(6,14);
this.ClientSize=newSystem.Drawing.Size(292,273);
this.Controls.AddRange(newSystem.Windows.Forms.Control[]{
this.button1,
this.crystalReportViewer1});
this.Name="Form1";
this.StartPosition=System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text="水晶报表扫瞄器";
this.ResumeLayout(false);
}
#endregion
///<summary>
///使用程序的主出口点。
///</summary>
[STAThread]
staticvoidMain()
{
Application.Run(newForm1());
}
privatevoidbutton1_Click(objectsender,System.EventArgse)
{
try
{
if(openFileDialog1.ShowDialog()==DialogResult.OK)
this.crystalReportViewer1.ReportSource=@openFileDialog1.FileName;
//加载水晶报表,将资本报表绑定到水晶报表检察器
}
catch(Exceptionerror)
{
MessageBox.Show(error.ToString(),"毛病");//处置非常毛病
}
}
}
}
你觉得数据库怎么样? |
|