Пример #1
0
 private void button4_Click(object sender, EventArgs e)
 {
     if (textBox2.Text.Length == 0)
     {
         ShowError("User ID not entered in text box below. cannot continue");
     }
     else
     {
         try
         {
             _clientsManager.ContinueClientWork(textBox2.Text, 0, ClientContinueMode.Synchronize);
         }
         catch (Exception ex)
         {
             ShowError("Error performng operations. Additional info :\n" + ex.Message);
         }
     }
 }