From the main from i have

C# Code:
  1. public bool Talk = false;
  2.  
  3.  
  4.   private void CB_TALK_CheckedChanged(object sender, EventArgs e)
  5.         {
  6.             Talk = CB_TALK.Checked;
  7.         }

basicly to check the box switch the bool.


from my user control

c# Code:
  1. SpeechSynthesizer Voice = new SpeechSynthesizer();
  2.         private void TB_C_Enter(object sender, EventArgs e)
  3.         {
  4.             if (Form1.Talk)
  5.             {
  6.                 Voice.SpeakAsyncCancelAll();
  7.             Control C = new Control();
  8.             C = (Control)sender;
  9.             Voice.SpeakAsync(LBL_Name.Text + " " + C.Tag);
  10.             }
  11.            
  12.         }


However I can't seem to get the Usercontrl to access the Talk variable.

anyone got any idea what i'm forgetting?