Hi,
I am getting out of stack space error while running my VB 6.0 Project.
I understand that Out of stack space means something is continuously pushing data onto the stack and when it gets full the stack has no more space.
Can any one help on how to go about fixing this error?
The problem occurs in the following scenario: I have around 20 Property Get and Set Statements in my code and this problem occurs when my code tries to assign a value (lets say for 9th property)
Public Property Get Language() As String
Language = m_strLanguage
End Property
Public Property Let Language(ByVal strLanguage As String)
m_strLanguage = strLanguage
End Property
My code goes in to a recursive loop.