Page 1 of 1

Settings, tips and tricks

Posted: 20 Feb 2015, 09:11
by PetrS
size=150Automatic update after dialog change/size

You can switch off automatic update on dialog change.
If you swith automatic update OFF, IO and Output is not updated until you press "Refresh" button or "F5" shortcut.

Default value is TRUE = calculation is automatically updated whenever a change occurs in the dialogue.

Re: Settings, tips and tricks

Posted: 20 Feb 2015, 09:17
by PetrS
size=150Translation of TEXT commands with string constant/size

You can switch off translation of TEXT commands which do NOT contain any string constant.

code
TEXT("Hello world");
TEXT("A = " & A);
TEXT(Headline);
/code

Commands iTEXT("Hello world");/i and iTEXT("A = " & A);/i are translated in any case.
Command iTEXT(Headline);/i will be translated only if the checkbox is empty.

Default value is FALSE (all TEXT commands are translated).

iRemark: After seting this property to TRUE, you have to PURGE calculation to remove unnecessary translations./i