abcd12344445555
Programmer
Do you have any clues how the addition of a parameter to a constructor can cause a Stack overflow?
The following constructor works just fine:
__fastcall TformInteracaoL::TformInteracaoL(TComponent* Owner)
: TForm(Owner)
but the addition of a simple int parameter causes a Stack Overflow:
__fastcall TformInteracaoL::TformInteracaoL(TComponent* Owner,int sType)
: TForm(Owner)
Regards,
Paul.
The following constructor works just fine:
__fastcall TformInteracaoL::TformInteracaoL(TComponent* Owner)
: TForm(Owner)
but the addition of a simple int parameter causes a Stack Overflow:
__fastcall TformInteracaoL::TformInteracaoL(TComponent* Owner,int sType)
: TForm(Owner)
Regards,
Paul.