Exemple #1
0
    // This code will get the About string from the Web Service

    private void mnuAboutWS_Click(object sender, System.EventArgs e)
    //mnuAboutWS.Click;
    {
        try
        {
            ImageService imgsvc = new ImageService();
            MessageBox.Show(imgsvc.About(), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
        }
        catch (Exception exp)
        {
            MessageBox.Show(exp.Message, this.Text);
        }
    }