I'm still learning C# and this is really annoying me.

I need to modify the contents of a text box on a windows program.

(Using windows app template on VS 2005)

I have created a property on Form1 (SourcePath is a textbox)

Code:
public string SourceDir
        {
            get { return SourcePath.Text; }
            set { SourcePath.Text = value; }
        }
...