I have an edit field that is numeric. The display mask is set to "Same mask as the input". The input mask is set to "99.9 %%". This mask works fine. However, if the user toggles a different control I change the input mask using the maskSystemCurrency constant.
Thoughts?
EDT_NoName1..InputMask = maskSystemCurrencyThat also works fine, but if the user toggles the control again I switch the input mask back to "99.9 %%".
EDT_NoName1..InputMask = "99.9 %%"At this point the edit field starts displaying as 9,9 % instead of 99% and it will not let me include a decimal place.
Thoughts?