I have a form (Form2) that I want to write text at the top of (In the blue field where you normally can can tell what the windows/forms name is)
I thought it should be like this but I cant find "Form2" after this->
What I can find is Form2_Load and form5instance.
But none of these will work to use.
this->Form2_Load = "write something"; //Does not compile
this->form5instance.Text = "write something";
//This does compile but no text is written in the blue field.