passing public variables mid forms

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • newbe
    New Member
    • Nov 2006
    • 2

    #1

    passing public variables mid forms

    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
  • willakawill
    Top Contributor
    • Oct 2006
    • 1646

    #2
    Originally posted by newbe
    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
    Hi you are using .NET so the repy in this forum would be different although similar.

    Forms("form1"). TextBox1.Text = Forms("form2"). VariableName

    Comment

    Working...