
Announcements
Sorry, I'm just a rookie. Trying the find the right format (EU) for adding multipal syntaxis to an OnSelect.
Just an example
US Code:
Set(ButtonFontSize, 20);
Set(ButtonWith, 200);
EU Code:
Set(ButtonFontSize; 20)
Set(ButtonWith; 200)
What do i need to put after the closing marks )?
You use ; instead of the US , as the list separator,
and you use ;; (double semicolon) instead of the US ; to end a formula statement.
US formula:
Set(ButtonFontSize, 20);
Set(ButtonWidth, 200);
EU formula with semicolon as a list separator and double semicolon as a chaining operator):
Set(ButtonFontSize; 20);;
Set(ButtonWidth; 200);;
In the EU format, the semicolon is used as a list separator, and the double semicolon is used as a chaining operator.
Check the documentation here for more info
See if it helps @bramnaus