private void exportToolStripMenuItem_Click(object sender, EventArgs e) { frmExport frm = new frmExport(); frm.Show(); this.Hide(); }
private void grdView_MouseDoubleClick(object sender, MouseEventArgs e) { if (this.grdView.CurrentRow != null) { refForm.TransactionMasterId = Int64.Parse(this.grdView.CurrentRow.Cells[0].Value.ToString()); refForm.Show(); this.Close(); } }