private void btnStart2_Click(object sender, EventArgs e) { try { if (txtFilePath.Text != "") { Form frm = Application.OpenForms["frmShowWindow"]; if (frm == null) { frm = new frmShowWindow(); timeRight = 0; lblSubmitSuccess.Text = "0"; _timer.Enabled = true; btnStart.Enabled = false; btnStart2.Enabled = false; btnStop.Enabled = true; UC_WebBrowserReal uc = new UC_WebBrowserReal(lsAllData); uc.sendCount = new UC_WebBrowserReal.sendCountSubmit(setCountSubmit); frm.Controls.Clear(); uc.Dock = DockStyle.Fill; frm.Text = "Đang thực hiện quá trình submit dữ liệu..."; frm.ControlBox = false; frm.Controls.Add(uc); frm.Show(); } else { XtraMessageBox.Show("Đóng các cửa sổ còn lại để thực hiện"); } } else { XtraMessageBox.Show("Bạn chưa chọn file để hiển thị"); } } catch (Exception ex) { XtraMessageBox.Show("" + ex.Message, "Lỗi"); } }