| 
 Posted by Jerry Stuckle on 11/16/06 23:51 
windandwaves wrote: 
> Hi gurus 
>  
> I have a class from which I create an object.  I want this object to be 
> available in all my functions for my application. Basically, I want to 
> make the object global.  What is the best way to do this? 
>  
> Thank you 
>  
> Nicolaas 
>  
 
Like any other variable.  Pass it as a parameter to the functions  
(highly recommended) or make it global (not recommended). 
 
--  
================== 
Remove the "x" from my email address 
Jerry Stuckle 
JDS Computer Training Corp. 
jstucklex@attglobal.net 
==================
 
[Back to original message] 
 |