コード例 #1
0
ファイル: Form1.cs プロジェクト: nadunD99/BlindScope
 private void button2_Click(object sender, EventArgs e)
 {
     try
     {
         csDBOperator obj001 = new csDBOperator();
         string       msg    = obj001.mdDataFEED();
         MessageBox.Show(msg);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: nadunD99/BlindScope
 private void Active()
 {
     try
     {
         csDBOperator obj001 = new csDBOperator();
         obj001.mcbgetCurrentID(out iddd);
         string msg = obj001.mdDataFEED();
         MessageBox.Show(msg);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }