Example #1
0
        private void Button2_Click(object sender, EventArgs e)
        {
            FStep6Dialog st7 = new FStep6Dialog();

            this.Hide();
            st7.ShowDialog();
        }
Example #2
0
 private void Button3_Click(object sender, EventArgs e)
 {
     this.mData = textBox1.Text;
     if (this.mData == "")
     {
         label5.Text = "This field is required !";
     }
     else
     {
         label5.Text = "";
         AppUtilities.CreateOrUpdateDict("step5", this.mData);
         FStep6Dialog st6 = new FStep6Dialog();
         this.Hide();
         st6.ShowDialog();
     }
 }