#LocalizedStrings

Hi,

selecting a Label control in the inspector panel -> setting the Text property to [quote]#LocalizedStrings.LOGOUT[/quote] works fine. (LocalizedStrings is a module and LOGOUT is a dynamic string constant)

But how I have to write in the code editor?

Label1.Text = #LocalizedStrings.LOGOUT doesn’t work. (Compiler Error)

The # is only to tell the IDE that the string should be treated as a reference when entered in the property editor. In code, you would never need that because it’s the same as not quoting the string vs. quoting it.

So leave off the #.

Thank you Kem.

Just did a new try after restart and came to the same :slight_smile: