Results 1 to 3 of 3

Thread: [RESOLVED] how to declare these globally in a module

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Sep 2005
    Posts
    1,364

    Resolved [RESOLVED] how to declare these globally in a module

    Dim t As Integer
    Dim t1 As Integer

    how can i declare them globally guys, so i can use them in any form/module/class etc

  2. #2
    Lively Member
    Join Date
    Feb 2005
    Location
    California
    Posts
    97

    Re: how to declare these globally in a module

    I usually setup a Module for Globals variables.

    Code:
    Global t as Integer
    Global t1 as Integer

  3. #3
    Addicted Member
    Join Date
    Feb 2006
    Posts
    208

    Re: [RESOLVED] how to declare these globally in a module

    me, im using

    VB Code:
    1. Public t as integer
    2. public t1 as integer

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