发布一个水晶报表的通用类:CrystalHelper

本文介绍了一个适用于.Net Framework 2.0及ASP.NET 2.0环境的水晶报表通用类CrystalHelper,该类封装了常用操作并简化了权限验证流程,避免了在ASP.NET中使用Crystal Reports遇到的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 发布一个水晶报表的通用类:CrystalHelper,适用环境如下:

 .Net Framework 2.0 ,ASP.NET2.0中直接实例化就可以用了,封装了常用的操作,特别是权限验证部分,很方便,可以避免在ASP.NET 中使用CrystalReports时遇到的很多问题!部分代码如下:
using System;
using System.Text;
using System.Data;
using System.Drawing;
using System.Globalization;
using System.Threading;
using System.Windows.Forms;
using System.Web;
using System.Diagnostics.CodeAnalysis;
using System.Collections.Generic;

// Crystalreports required assemblies
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
using CrystalDecisions.Windows.Forms;

namespace CrystalLibrary
{
    
/// <summary>
    
/// Supported export formats for Crystal reports.
    
/// </summary>

    public enum CrystalExportFormat
    
{
        
/// <summary>
        
/// Export to Microsoft Word (*.doc)
        
/// </summary>

        Word,

        
/// <summary>
        
/// Export to Microsoft Excel (*.xls)
        
/// </summary>

        Excel,

        
/// <summary>
        
/// Export to Rich Text format (*.rtf)
        
/// </summary>

        RichText,

        
/// <summary>
        
/// Export to Adobe Portable Doc format (*.pdf)
        
/// </summary>

        PortableDocFormat
    }


    
/// <summary>
    
/// <p>The CrystalHelper class handles a number of actions that are usually
    
/// required to use Crystal Reports for Visual Studio .Net. 
    
/// </p>
    
/// <p>This class can be used for all reports based on typed datasets and reports that
    
/// have embedded queries.</p>
    
/// <p>Please note that you need to register Crystal Reports when you want to use 
    
/// it in Visual Studio. Registration of Crystal Reports for VS.Net is free!</p>
    
/// </summary>
    
/// <example>
    
/// The following example shows how CrystalHelper can be used to print a report
    
/// where the information is supplied by a DataSet:
    
/// <code>
    
/// void PrintReport(SqlConnection conn)
    
/// {
    
///     using (DataSet ds = new TestData())
    
///     {
    
///         SqlHelper.FillDataset(conn, 
    
///             CommandType.Text, "SELECT * FROM Customers", 
    
///             ds, new string [] {"Customers"});
    
/// 
    
///             using (CrystalHelper helper = new CrystalHelper(new CrystalReport1()))
    
///         {
    
///             helper.DataSource = ds;
    
///             helper.Open();
    
///             helper.Print();
    
///             helper.Close();
    
///         }
    
///     }
    
/// }
    
/// </code>
    
/// 
    
/// </example>

    public class CrystalHelper : IDisposable
    
{
        
Local Variables

        
Private methods

        
Constructors

        
Public properties

        
Public static properties

        
Public methods

        
Public static methods

        
IDisposable Members
    }

}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值