void timerCapture_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { g_Count++; if (g_Count >= g_SoGiay && g_bRun) { Random ran = new Random(); int iLine = ran.Next(0, 5); int iPhone = ran.Next(0, g_Len - 1); long id = TaxiCapture.InsertCuocGoiLanDauByDiaChiFromMEM(this.g_ConnecString, lstLine[iLine].ToString(), lstPhone[iPhone], DateTime.Now, "", 0, Taxi.Utils.KieuKhachHangGoiDen.KhachHangBinhThuong, "", 0, 0, "", ""); if (id > 0) { // statusLblSoCuocChoXuLy.Text = "Đang thoại : " + g_ListCuocGoiChoXuLy.Count.ToString(); lblGoiDen.Invoke((MethodInvoker) delegate() { lblGoiDen.Text = "Gọi đến : " + lstLine[iLine].ToString() + " - " + lstPhone[iPhone]; }); } g_Count = 0; } }
private void btnGenCall_Click(object sender, EventArgs e) { try { long id = TaxiCapture.InsertCuocGoiLanDauByDiaChiFromMEM(this.g_ConnecString, txtLine.Text, txtSoDienThoai.Text, DateTime.Now, "", 0, Taxi.Utils.KieuKhachHangGoiDen.KhachHangBinhThuong, "", 0, 0, "", ""); if (id > 0) { // statusLblSoCuocChoXuLy.Text = "Đang thoại : " + g_ListCuocGoiChoXuLy.Count.ToString(); lblGoiDen.Invoke((MethodInvoker) delegate() { lblGoiDen.Text = "Gọi đến : " + txtLine.Text + " - " + txtSoDienThoai.Text; }); } else { MessageBox.Show("LOI : Không chèn được."); } } catch (Exception ex) { MessageBox.Show("LOI :" + ex.Message); } }