24 lines
509 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Stone.Common;
namespace Stone.WinModule.JISAdmin
{
public partial class frmEdiPrintASNOut : Form
{
public frmEdiPrintASNOut()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MyExport.ShowExport(this.dgrdView1);
}
}
}