The project has two forms. Form2 is called by pressing a button in Form1 using Form2->ShowDialog(); ( #include <Form2.h> was Form1.h registered in Form1.h ) Question: How can I pass several pointers of type Test ^Name to Form2 ? Test - structure:
public ref class Form1 : public System::Windows::Forms::Form { public: ref struct Test { System::String ^test1; int test2; }; ...
System::String ^is not C ++. - AnT