View Single Post
  #6 (permalink)  
Old 07-02-2008, 09:46 PM
specci48's Avatar
specci48 specci48 is offline
Basic4ppc Expert
 
Join Date: Apr 2007
Location: Germany
Posts: 672
Default

Hmmm... I'm not really sure if I understand your question.
Do you wan't an explanation of the differences between global and local variables?

Global variables must be declared in the special "Sub Globals". These variables can be accessed throughout the whole program, so one sub can change the value of a variable and another sub can read the value.

All other variables are only accessible within their original sub. If the sub has been processed, all values of the "local" variables are lost.


specci48
Reply With Quote