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. adress Form2? i don't only want to rename the actual Form.
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. adress Form2? i don't only want to rename the actual Form.