private void button21_Click(object sender, EventArgs e)
 {
     AiboLiveToSql aibo = new AiboLiveToSql(webBrowser2.Document.Body.InnerHtml);
     toolStripLabel2.Text = aibo.updateLiveAibo().ToString();
     MessageBox.Show("OK");
 }
 private void button21_Click(object sender, EventArgs e)
 {
     try
     {
         AiboLiveToSql aibo = new AiboLiveToSql(webBrowser2.Document.Body.InnerHtml);
         toolStripLabel2.Text = aibo.updateLiveAibo().ToString();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
     finally
     {
         MessageBox.Show("OK");
     }
 }