Hi
I have a form that i use to print another form. When a fields on the original form is empty, I would like to hide it on the print form.
Thanks for your help
Bram
Hi
I have a form that i use to print another form. When a fields on the original form is empty, I would like to hide it on the print form.
Thanks for your help
Bram
Subject: Hide field if empty on print form
on web or on client ? can u paste the code here ?
Subject: RE: Hide field if empty on print form
on web or on client ? in the notes client
can u paste the code here ?
i don’t have any code, that’s my problem, i haven’ got any idea of which concept to use … agent? value in field ???
Subject: RE: Hide field if empty on print form
The simplest would be to use the field properties HideWhen tab
From: http://www-10.lotus.com/ldd/today.nsf/lookup/hidewhen
The simplest conditions are no problem—is the form in Edit mode or Read mode? But anything more complicated usually depends on evaluating the contents of the field itself. The most common test is usually to see if the field has contents, and hide it if it doesn’t:
ThisField = “”
Subject: RE: Hide field if empty on print form
ThisField = “”
works fine …
thanks
Don