36 lines
679 B
C#
36 lines
679 B
C#
|
|
using System;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Collections;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using DevExpress.XtraReports.UI;
|
|||
|
|
using System.Data;
|
|||
|
|
using DevExpress.DataAccess.Sql;
|
|||
|
|
|
|||
|
|
namespace Barcode
|
|||
|
|
{
|
|||
|
|
public partial class 核对清单 : DevExpress.XtraReports.UI.XtraReport
|
|||
|
|
{
|
|||
|
|
public 核对清单()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
public void SetBindData(DataSet table)
|
|||
|
|
{
|
|||
|
|
this.DataSource = table.Tables[0];
|
|||
|
|
DetailReport.DataSource = table.Tables[1];
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void PrintDataDig()
|
|||
|
|
{
|
|||
|
|
this.ShowPreviewDialog();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|