Out of Stack space

N

nczimm

I have a class module with get and let for two variables. This class is
instantiated in a form. When one of the variables in the class is
populated (attempted) I get the Out of Stack Space error 28. The is is
being done on form close.

Thanks in advance
 
G

Graham Mandeno

This is usually an indication or recursion gone mad.

Try putting a breakpoint in your code on the line where the Let is called
and step through your code (F8 key) to see where it is going. You might
meed to set the option to allow breakpoints in class modules
(Tools>Options>General tab in the VB editor window).
 
Top