02-01-2017, 01:31 AM
02-01-2017, 07:48 PM
Hi NeobeatIKK,
you can give your NVL textbox the attribute "behaviour" with a value of "nvl":
Or in older versions of the engine:
And if you want to clear the textbox, use the clear command:
Or old version:
To clarify: if you use both NVL and ADV mode, you must use separate textboxes.
Have fun!
you can give your NVL textbox the attribute "behaviour" with a value of "nvl":
Code:
. textbox name nvltb, behaviour nvl
Or in older versions of the engine:
Code:
<textbox name="nvltb" behaviour="nvl" />
And if you want to clear the textbox, use the clear command:
Code:
. clear @nvltb
Or old version:
Code:
<clear asset="nvltb" />
To clarify: if you use both NVL and ADV mode, you must use separate textboxes.
Have fun!
02-02-2017, 02:05 AM
Thanks!