Hello,

I've got the following problem.

In my application i would like to pass an __gc form to an __nogc class. Like this.

public: __gc MyForm() {

public: Myclass * MyObject;

....... Load Of my form ......
MyObject = new Myclass( this);

};

Unfortunatly, with visual c++ .NET, it's impossible!

Any sugection?

Tank in advance for help.