Hey guys I have two Form2's from Form1, so I wanted to edit the two Form2's I can do it with c++
for each(Form ^ mForm in Application::OpenForms )
{
myForm2= dynamic_cast<Form2^>(mForm);
if(myForm2 != nullptr)
//do something with Form2
}
any idea how to convert it to delphi code ?