I have a Print button that has the following 'if' statement:
if (xfa.form.form1.EmployeeInfo.EmployeeID.rawValue.length > 6)
The code doesn't even execute.
I also tried the following to see if I could get a value (it does execute, but returns 0):
app.alert(xfa.form.form1.EmployeeInfo.EmployeeID.length)
How do I do a length check on a numeric value?
George Kaiser