jcook331
15th November 2005, 18:17
I am using the inputfield.invisible() field on my form to make certain fields invisible for certain types of records. When the user is tabbing back and forth I have to make those fields visible again when a new type of record is tabbed to. The problem is when I use the inputfield.visible() function to make the fields visible again I get the error:

Fatal error : object # in process # not found.

Does anybody know why this is happening or how to correct it. Thanks

v_chandra
16th November 2005, 05:40
Hi

Use is.field.invisible() to check whether a specified field is currently visible or invisible.

Return values:
FALSE field is visible
TRUE field is invisible

Example:

if not is.field.invisible( "ttadv200.cpac" ) then
display( "ttadv200.cpac" )
endif

Thanks & Regards

Hitesh Shah
16th November 2005, 16:15
Though documentation says u can use the statements anywhere in the program, AFAIK it can be used only once in the program. Maybe later service packs has some improvements in it .

jcook331
16th November 2005, 16:51
Is there any other way to make input fields not show up on the form for some record types and then show up for others?