private void button4_Click(object sender, EventArgs e)
 {
     try
     {
         Service4 webservice = new Service4();
         textBox12.Text = webservice.ModuloOctalNumbers(textBox10.Text, textBox11.Text);
         webservice.Dispose();
     }
     catch (Exception ex)
     {
         textBox12.Text = ex.Message;
     }
 }
 private void button8_Click(object sender, EventArgs e)
 {
     try
     {
         Service4 webservice = new Service4();
         MessageBox.Show(webservice.AppointmentPlugin());
         webservice.Dispose();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }