devxlogo

Passing variables from forms to forms

Passing variables from forms to forms

Question:
Would you please tell me how to pass variables from forms to forms? Is that we can use the Tabs in general or use pass by reference? Thanks!

Answer:
Since you’re using Version 3.0 of Visual Basic, the only way to access thesame variable from two different places is through the use of a globalvariable. To declare a variable, do the following:

  1. Add a code module to your project. A code module is one that ends in.BAS.
  2. In the declarations section of that code module, declare your variablewith the Global keyword, as shown here:
    Global foo as Integer
    That will create a variable named foo that can be accessed from any form orcode module.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist