Problem with Constructor
I have a new application written and a data class that is instantiated on Load of a Form. Problem is as soon as the constructor of the data class is complete I wind up right in the Destructor. I have the pointer to the Data Class defined as Public in the Form1.h and still the Destructor kicks in.
My declaration is fairly simple...
publilc: MyNameSpace::MyDataClass ^m_pDataClass;
Then in Form1_Load after InitializeComponents
m_pDataClass = gcnew MyNameSpace::MyDataClass(somestuff);
Any help would be appreciated.

