private void button2_Click(object sender, EventArgs e) { try { Service2 webservice = new Service2(); textBox6.Text = webservice.DifferenceOctalNumbers(textBox4.Text, textBox5.Text); webservice.Dispose(); } catch (Exception ex) { textBox6.Text = ex.Message; } }