Posted by windandwaves on 11/17/06 00:08
Thanks Jerry
I know about those methods. That is cool, problem is that I dont want
to add an extra variable to each function (over 30) that I have for
this site.
Anyway, I will stick with that for now.
Thanks a million for your reply.
Nicolaas
Jerry Stuckle wrote:
> 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]
|