Caner.B
18th April 2002, 12:21
Hi,
Is it possible to change a displayfield on a form to an input field only after cilicking the insert button and and after saving changing it again to a display field.

Thanks
Caner

evesely
18th April 2002, 16:02
If you have the source for the program script, this is pretty simple. Put the field on the form as an input field. In the program script, do something like this in the before.input subsection for the field:


if update.status <> add.set then
attr.input = false
endif


I hope this helps.