123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 此代码由工具生成。
- // 运行时版本:4.0.30319.42000
- //
- // 对此文件的更改可能会导致不正确的行为,并且如果
- // 重新生成代码,这些更改将会丢失。
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Reports {
- using System;
- using System.ComponentModel;
- using CrystalDecisions.Shared;
- using CrystalDecisions.ReportSource;
- using CrystalDecisions.CrystalReports.Engine;
-
-
- public class FrmCustomerReqInfo_BillSearch : ReportClass {
-
- public FrmCustomerReqInfo_BillSearch() {
- }
-
- public override string ResourceName {
- get {
- return "FrmCustomerReqInfo_BillSearch.rpt";
- }
- set {
- // Do nothing
- }
- }
-
- public override bool NewGenerator {
- get {
- return true;
- }
- set {
- // Do nothing
- }
- }
-
- public override string FullResourceName {
- get {
- return "Reports.FrmCustomerReqInfo_BillSearch.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 CachedFrmCustomerReqInfo_BillSearch : Component, ICachedReport {
-
- public CachedFrmCustomerReqInfo_BillSearch() {
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public virtual bool IsCacheable {
- get {
- return true;
- }
- set {
- //
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public virtual bool ShareDBLogonInfo {
- get {
- return false;
- }
- set {
- //
- }
- }
-
- [Browsable(false)]
- [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
- public virtual System.TimeSpan CacheTimeOut {
- get {
- return CachedReportConstants.DEFAULT_TIMEOUT;
- }
- set {
- //
- }
- }
-
- public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() {
- FrmCustomerReqInfo_BillSearch rpt = new FrmCustomerReqInfo_BillSearch();
- 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;
- }
- }
- }
|