Hi.
Im trying to rename a Window, by adressing a specific window.
eg.
WindowsApplication1.Form1.Text = "newName";
that didn't work!
what worked was:
1. System.Windows.Form1.Form.ActiveForm.Text = "newName";
and
2. this.Text = "NewName";
But how can I eg...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.