⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmreport.cs

📁 本论文叙述了联机考试系统的现状以及C#语言的概况。重点介绍了联机考试系统的实现过程:包括系统分析、 系统调查、 数据流程分析、功能设计、 数据库设计、 系统物理配置方案、 系统实现、 系统测试和调试。
💻 CS
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace SupermarketProject
{
	/// <summary>
	/// Summary description for frmReport.
	/// </summary>
	public class frmReport : System.Windows.Forms.Form
	{
		public CrystalDecisions.Windows.Forms.CrystalReportViewer crvReportViewer;
		private System.Windows.Forms.HelpProvider hlpReport;
		private System.Windows.Forms.ToolTip tipReport;
		private System.ComponentModel.IContainer components;


		public frmReport()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();
            this.hlpReport.HelpNamespace=@"..\..\HELP\SupermarketHelp.chm"; 
			//
			// TODO: Add any constructor code after InitializeComponent call
			//
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.crvReportViewer = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
			this.hlpReport = new System.Windows.Forms.HelpProvider();
			this.tipReport = new System.Windows.Forms.ToolTip(this.components);
			this.SuspendLayout();
			// 
			// crvReportViewer
			// 
			this.crvReportViewer.ActiveViewIndex = -1;
			this.crvReportViewer.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.crvReportViewer.DisplayGroupTree = false;
			this.crvReportViewer.Location = new System.Drawing.Point(19, 17);
			this.crvReportViewer.Name = "crvReportViewer";
			this.crvReportViewer.ReportSource = null;
			this.crvReportViewer.Size = new System.Drawing.Size(816, 405);
			this.crvReportViewer.TabIndex = 0;
			// 
			// hlpReport
			// 
			this.hlpReport.HelpNamespace = "D:\\Project10102004\\HTM_FILES_FOR_HELP\\SUPERMARKETHELP.CHM";
			// 
			// frmReport
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(864, 436);
			this.Controls.Add(this.crvReportViewer);
			this.Name = "frmReport";
			this.Text = "报表";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.ResumeLayout(false);

		}
		#endregion

		
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -