Exemplo n.º 1
0
        private void button6_Click(object sender, EventArgs e)
        {
            MobileServicing mobileServicing = new MobileServicing();

            this.Hide();
            mobileServicing.Show();
        }
        private void updatespdetailsbutton_Click(object sender, EventArgs e)
        {
            MobileServicing mobileServicing = new MobileServicing();

            this.Hide();



            DialogResult d;

            d = MessageBox.Show("Do you want to Go Back?", "", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);

            if (d == DialogResult.Yes)
            {
                mobileServicing.Show();
            }
            else if (d == DialogResult.No)
            {
                this.Show();
            }
            else
            {
                Close();
            }
        }