Notifications
Clear all
Topic starter
I know you can change the max characters for an edit field but I'd like to set a multi-line edit to 50 characters max. How can this be accomplished?
Posted : May 9, 2013 10:53 pm
about the only thing I can think of is...
{MLEF = SUB(MLEF, 1, 50)}
whenever the MLEF changes, it will be truncated to 50 chars.
Posted : May 10, 2013 12:40 am
Topic starter
I assume the MLEF would = my observation term? Would there be a message telling them that they've hit their max limit of 50?
Posted : May 13, 2013 1:51 am
not with this. you would need...
if SIZE(MLEF) > 50 then
USEROK("message" + "truncating to 50")
MLEF = SUB(MLEF, 1, 50)}
else
""
endif
Posted : May 13, 2013 2:10 am