Beispiel #1
0
 private void testBtn2_Click(object sender, EventArgs e)
 {
     try
     {
         AgentDll.exit_target();
     }
     catch (Exception ex)
     {
         string haha = ex.ToString();
         XtraMessageBox.Show(ex.ToString(), "错误");
     }
 }
Beispiel #2
0
 private void pictureBox2_Click(object sender, EventArgs e)
 {
     try
     {
         StringBuilder buf = new StringBuilder(1024);
         AgentDll.btn_check_head_band(buf);
         XtraMessageBox.Show(buf.ToString() + "hahahaha");
     }
     catch (Exception ex)
     {
         string haha = ex.ToString();
         XtraMessageBox.Show(ex.ToString(), "错误");
     }
 }
Beispiel #3
0
 private void Starter_Shown(object sender, EventArgs e)
 {
     try
     {
         //killP();
         AgentDll.launchEx(true);
     }
     catch (Exception ex)
     {
         string haha = ex.ToString();
         XtraMessageBox.Show(ex.ToString(), "错误");
     }
     Thread.Sleep(10000);
     this.DialogResult = System.Windows.Forms.DialogResult.OK;
 }
Beispiel #4
0
 private void testBtn3_Click(object sender, EventArgs e)
 {
     try
     {
         string        w_name      = "tester";
         string        w_birth_day = "1984-09-10";
         string        w_location  = "wuhan";
         string        w_sex       = "Female";
         string        sql         = string.Format("INSERT INTO patient VALUES (NULL, '{0}', '{1}', '{2}', '中国', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, '{3}', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, 0, 0, 0, 0, 10, 0, 0, 76, 88, 85, 91, 98, 64, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, 0, 0, 1, 1, 1, 1, 1, 2, NULL, NULL, NULL);", w_name, w_birth_day, w_location, w_sex);
         string        dbname      = "C:\\Clasp32\\DATA\\data.db3";
         StringBuilder sb          = new StringBuilder();
         sb.Append(sql);
         AgentDll.exec_sql(sb);
     }
     catch (Exception ex)
     {
         string haha = ex.ToString();
         XtraMessageBox.Show(ex.ToString(), "错误");
     }
 }
Beispiel #5
0
 private void testBtn_Click(object sender, EventArgs e)
 {
     try
     {
         AgentDll.exit_target();
     }
     catch (Exception ex)
     {
         string haha = ex.ToString();
         XtraMessageBox.Show(ex.ToString(), "错误");
     }
     //try
     //{
     //    AgentDll.launchEx(true);
     //}
     //catch(Exception ex)
     //{
     //    string haha = ex.ToString();
     //    XtraMessageBox.Show(ex.ToString(), "错误");
     //}
 }
Beispiel #6
0
 private void pictureBox1_Click(object sender, EventArgs e)
 {
     AgentDll.showForm();
 }