How to limit the user entry to 7 digits in NumberEditBox?
ECN = 0,
Text Box( "System ECN:" ),
S1 = Number Edit Box(ECN, <<Set Property( "MaxLength", 7)),
The user shouldn't be able to enter more than 7 digits. For example: 1234567... the user shouldn't be able to enter 8. How did achieve this? Any help is appreciated.