Results 1 to 2 of 2

Thread: Global Variable

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2010
    Posts
    94

    Global Variable

    In my previous knowledge of programming, i used to use global.variable = true
    how could i achieve this so the variable could be used across all forms?

  2. #2
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,106

    Re: Global Variable

    Add a module to the project, add the variable as public to the module:
    Code:
    Public Module SomeModule
     Public variable As Boolean = True
    End Module
    My usual boring signature: Nothing

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width