예제 #1
0
파일: ManagerForm.cs 프로젝트: xenups/Negar
 private void updateButton_Click(object sender, EventArgs e)
 {
     try {
         if (activateCheckBox.Checked)
         {
             SqlManipulator sql = new SqlManipulator();
             if (sql.sendUpdateNotify(Int32.Parse(this.versionTextBox.Text.ToString())))
             {
                 MessageBox.Show("با  موفقیت پیام بروزرسانی ارسال شد ، کاربران ملزم به استفاده از  نسخه جدید می باشند ");
             }
         }
         else
         {
             this.versionTextBox.Text = global.currentVersion.ToString();
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }