private void รายงานสรปการจายปนผลเฉลยคนToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ReportReceiptMemberForm form = new ReportReceiptMemberForm();

            form.MdiParent = this;
            form.Show();
        }
Example #2
0
 /// <summary>
 /// รายงานสรุปการจ่ายปันผล-เฉลี่ยคืน
 /// </summary>
 /// <param name="reportReceiptMemberForm"></param>
 /// <param name="dt"></param>
 /// <param name="reportMemberChange"></param>
 public frmMainReport(ReportReceiptMemberForm reportReceiptMemberForm, DataTable dt, int reportMemberChange)
 {
     InitializeComponent();
     this.reportReceiptMemberForm = reportReceiptMemberForm;
     this.dt = dt;
     this.reportMemberChange = reportMemberChange;
     this.TypeReport         = MyConstant.TypeReport.ReportMemberChange;
 }