FrmGeQuQingDan.cs
资源名称:KTV.rar [点击查看]
上传用户:fzwcsgshou
上传日期:2022-07-30
资源大小:28414k
文件大小:1k
源码类别:
行业应用
开发平台:
Visual C++
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace KTVAdmin.GeQuGuanLi
- {
- public partial class FrmGeQuQingDan : Form
- {
- public FrmGeQuQingDan()
- {
- InitializeComponent();
- }
- private void FrmGeQuQingDan_Load(object sender, EventArgs e)
- {
- CRTGeQuInfo CRTGeQuInfo1 = new CRTGeQuInfo();
- DataSet ds = new DataSet();
- ds = KTVData.KTVDB.SelectGeQu("", "", "", "");
- CRTGeQuInfo1.SetDataSource(ds.Tables[0]);
- crystalReportViewer1.ReportSource = CRTGeQuInfo1;
- }
- }
- }