FrmGeQuQingDan.cs
上传用户:fzwcsgshou
上传日期:2022-07-30
资源大小:28414k
文件大小:1k
源码类别:

行业应用

开发平台:

Visual C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace KTVAdmin.GeQuGuanLi
  9. {
  10.     public partial class FrmGeQuQingDan : Form
  11.     {
  12.         public FrmGeQuQingDan()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         private void FrmGeQuQingDan_Load(object sender, EventArgs e)
  17.         {
  18.             CRTGeQuInfo CRTGeQuInfo1 = new CRTGeQuInfo();
  19.             DataSet ds = new DataSet();
  20.             ds = KTVData.KTVDB.SelectGeQu("", "", "", "");
  21.             CRTGeQuInfo1.SetDataSource(ds.Tables[0]);
  22.             crystalReportViewer1.ReportSource = CRTGeQuInfo1;
  23.         }
  24.     }
  25. }