CrystalReport1.cs
资源名称:VCSDB.rar [点击查看]
上传用户:hjieqiu
上传日期:2013-05-11
资源大小:16494k
文件大小:4k
源码类别:
企业管理
开发平台:
C#
- //------------------------------------------------------------------------------
- // <autogenerated>
- // This code was generated by a tool.
- // Runtime Version: 1.1.4322.573
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </autogenerated>
- //------------------------------------------------------------------------------
- namespace 教务管理系统 {
- using System;
- using System.ComponentModel;
- using CrystalDecisions.Shared;
- using CrystalDecisions.ReportSource;
- using CrystalDecisions.CrystalReports.Engine;
- public class CrystalReport1 : ReportClass {
- public CrystalReport1() {
- }
- public override string ResourceName {
- get {
- return "CrystalReport1.rpt";
- }
- set {
- // Do nothing
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section Section1 {
- get {
- return this.ReportDefinition.Sections[0];
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section Section2 {
- get {
- return this.ReportDefinition.Sections[1];
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section Section3 {
- get {
- return this.ReportDefinition.Sections[2];
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section Section4 {
- get {
- return this.ReportDefinition.Sections[3];
- }
- }
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public CrystalDecisions.CrystalReports.Engine.Section Section5 {
- get {
- return this.ReportDefinition.Sections[4];
- }
- }
- }
- [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")]
- public class CachedCrystalReport1 : Component, ICachedReport {
- public CachedCrystalReport1() {
- }
- public virtual bool IsCacheable {
- get {
- return true;
- }
- set {
- //
- }
- }
- public virtual bool ShareDBLogonInfo {
- get {
- return false;
- }
- set {
- //
- }
- }
- public virtual System.TimeSpan CacheTimeOut {
- get {
- return CachedReportConstants.DEFAULT_TIMEOUT;
- }
- set {
- //
- }
- }
- public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() {
- CrystalReport1 rpt = new CrystalReport1();
- rpt.Site = this.Site;
- return rpt;
- }
- public virtual string GetCustomizedCacheKey(RequestContext request) {
- String key = null;
- // // The following is the code used to generate the default
- // // cache key for caching report jobs in the ASP.NET Cache.
- // // Feel free to modify this code to suit your needs.
- // // Returning key == null causes the default cache key to
- // // be generated.
- //
- // key = RequestContext.BuildCompleteCacheKey(
- // request,
- // null, // sReportFilename
- // this.GetType(),
- // this.ShareDBLogonInfo );
- return key;
- }
- }
- }