
cant create obj error when calling a function in same class
the service obj is instantiated ok , both functions are in that object and
the call to Function Get() is fine
but when it calls the Make() function then it bombs. I know I haven't given
enough code clearly show what the code is doing
but I don't think the code is the problem, I think there is a memory or
thread problem...
I was hoping the error message I am getting would have been seen in a
similar situation buy someone...
(I know I'm grasping at straws here... )
thx for your thoughts...
Quote:
> i dont see the code where you instantiate that component? :
> dim a as Servive
> set a=new service
> call a.make
> > I have a class that has two functions in it, one function calls the
other
> > with no parameters
> > Service.cls
> > Public Function Get()
> > Call Make()
> > End Function
> > Private Function Make()
> > End Function
> > after the app has run under load for a while the call to the make()
> function
> > will generate the following error
> > ActiveX component can't create object.
> > (I know this question is obscure, but any brainstorming will be MUCH
> > appreciated)
> > thx