Page 1 of 1

Screen Tittle Of Popup page

Posted: Mon Apr 01, 2019 4:17 am
by kaka
Hi Everyone ,
I have a problem about of multiple languages.
How i can change screen title name of popup page when the set language action is activated.
Good day..

Re: Screen Tittle Of Popup page

Posted: Mon Apr 29, 2019 3:52 pm
by Russ C.
This could be done by creating a hidden text object on the popup screen and translating its text in the Multiple Languages screen. Then in the scripting for the popup on the screen opened event set the screen's title to the text object's text.
2019-04-29 15_51_09-iX Developer 2.40 SP2 - Project5.png
2019-04-29 15_51_09-iX Developer 2.40 SP2 - Project5.png (2.77 KiB) Viewed 4224 times

Code: Select all

		void Screen2_Opened(System.Object sender, System.EventArgs e)
		{
			this.ScreenTitle = Text1.Text;
		}