Make the textbox that you want to change "public". For example, you have a textbox called "TextBox1" and you want to change it's properties.
---------------------------------------------
Public Shared TBox1 as TextBox
---------------------------------------------
Then set that variable equal to the "TextBox1"
---------------------------------------------
TBox1 = TextBox1
---------------------------------------------
Then from your other form you can access it's properties:
---------------------------------------------
[Form1Name].TBox1.Text = [Form2TextBoxName].Text
---------------------------------------------
J
|