    private void Form2_Load(object sender, EventArgs e)
        {
          
                label1.Text = "TextBox1 is " + Common.field1;
                if (Common.field2)
                    label1.Text += "\n\n CheckBox1 Selected ";
                else
                    label1.Text += "\n\n CheckBox1 not Selected ";
        }
