Non-Required fields show N/A (1 Viewer)

stu_gnu

Registered User.
Local time
Today, 11:02
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.
 

charityg

Registered User.
Local time
Today, 11:02
Joined
Apr 17, 2001
Messages
634
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

Top Bottom