new to vs 2005 and vb and need help displaying a public string variable. A variable is assembled in child form2 which then needs to be displayed in a textbox on child form1. Child form2 controls and assembles the variable any help would be greatly appreciated
passing public variables mid forms
Collapse
X
-
Hi you are using .NET so the repy in this forum would be different although similar.Originally posted by newbenew to vs 2005 and vb and need help displaying a public string variable. A variable is assembled in child form2 which then needs to be displayed in a textbox on child form1. Child form2 controls and assembles the variable any help would be greatly appreciated
Forms("form1"). TextBox1.Text = Forms("form2"). VariableName
Comment