Passing variables between forms in VS2005

how do you send variables from one form to another in VS2005 apart from the public sub new method

Answer this question

Passing variables between forms in VS2005

  • MoFe

    You can just declare the variable as shared and you can then access it from any form. Or better, you can create a public property to hold the value, set the value in one form and access in another.
  • Passing variables between forms in VS2005