private void btnSearch_Click(object sender, EventArgs e)
        {
            frmImport frmThis = new frmImport();

            frmThis = this;
            this.Hide();
            frmImSearch frm = new frmImSearch(ref frmThis);

            frm.ShowDialog(ref txtTransaction_code);
        }
 private void btnSearch_Click(object sender, EventArgs e)
 {
     frmImport frmThis = new frmImport();
     frmThis = this;
     this.Hide();
     frmImSearch frm = new frmImSearch(ref frmThis);
     frm.ShowDialog(ref txtTransaction_code);
 }