stu_gnu
06-28-2001, 01:45 AM
Is it possible to programme a form, so that once a user has passed through a field without making an entry, the fields show the word N/A.
|
View Full Version : Non-Required fields show N/A stu_gnu 06-28-2001, 01:45 AM Is it possible to programme a form, so that once a user has passed through a field without making an entry, the fields show the word N/A. charityg 06-28-2001, 06:45 AM This is just theory, but worth a try. In the lostFocus event use something like: if isnull(fldName) then fldName="N/A" end if |