private void part6_btn_Click(object sender, EventArgs e)
        {
            Webstock.Service mystock = new Webstock.Service();
            string           rs      = mystock.getStockquote(part6_txtinput.Text); //output the value

            priceBox.Text = rs;
        }
 private void part6_btn_Click(object sender, EventArgs e)
 {
     
     Webstock.Service mystock = new Webstock.Service();
    string rs= mystock.getStockquote(part6_txtinput.Text);                //output the value
    priceBox.Text = rs;
     
 }