Non-Required fields show N/A

stu_gnu

Registered User.
Local time
Today, 02:23
Joined
Jun 27, 2001
Messages
10
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.
 
This is just theory, but worth a try.

In the lostFocus event use something like:

if isnull(fldName) then
fldName="N/A"
end if
 

Users who are viewing this thread

Back
Top Bottom