View Single Post
Unread 30 Dec 2004, 12:06   #22
vampire_lestat
Mathamagician
 
vampire_lestat's Avatar
 
Join Date: Aug 2001
Location: At the very edge of existance
Posts: 1,803
vampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet societyvampire_lestat is a pillar of this Internet society
Re: text files and combo boxes in visual basic

SI, found this:-

Procedure-level variables are created with a Dim statement placed right in the procedure where it's going to be used. The value of a procedure level variable cannot be accessed outside it's procedure. When the procedure finishes (End Sub or End Function), the variable is destroyed and memory allocated to the variable is released.

Module-level variables are created with a Private statement in the general declarations section of a Form or code module. The value of the module level variable is available to every procedure in that module. Memory allocated to the module-level variable is not destroyed until the module is Unloaded.

Global variables are created with a Public statement in the general declarations section of a Form or code module. The value of a Global variable is available to any procedure, in any Form or code module. Memory allocated to a Global variable is not released until your program shuts down.
__________________
I think I just had an evilgasm
vampire_lestat is offline   Reply With Quote