if(!(length(nameval) > 4))
errors += "Your name must be at least 5 characters in length.\n"
if(!ageval)
errors += "You must enter an age.\n"
if(errors)
winset(src, "errorsLabel", "text=[errors]")
Problem description:
Hey guys, something weird is going on here. I'm trying to update a label with error messages, yet it's acting funny.
If my name is too short, instead of displaying the full text string as shown, all it writes in the control is "Your". I have no idea why this is happening, does anyone have any suggestions?
eg