private void btnAddInternationSeminar_Click(object sender, EventArgs e)
        {
            var frm = new frmSeminarInternational();

            frm.ShowDialog();
        }
        private void btnAddInternationSeminar_Click(object sender, EventArgs e)
        {
            var frm = new frmSeminarInternational(dtgRecords.CurrentRow.Cells[1].Value.ToString());

            frm.ShowDialog();
        }