Reputation: 2400
Somebody have an idea how to rename form onLoad? I tried:
private: System::Void General_Load(System::Object^ sender, System::EventArgs^ e) {
String^ test = "test";
String^ x= "General: " + test;
this->Name = x;
}
but it doesn't work.
Upvotes: 0
Views: 145