Focal Point
-HTMLFORM

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4111019331

October 27, 2005, 09:07 PM
db
-HTMLFORM
I run a fex that loads to a htmlform.

-HTMLFORM search

I want to choose between two forms based on who the users are. How would I add

-HTMLFORM search2?
October 28, 2005, 04:22 AM
susannah
db, make it an &var
-SET &MYFORM = IF &USER IS 'LUCY' OR 'RICKY' THEN 'FORM1' ELSE IF &USER IS 'FRED' OR 'ETHEL' THEN 'FORM2' ELSE 'FORM3' ;
-SET &INVOKETHIS = '-HTMLFORM ' | &MYFORM ;

then to run it...

&INVOKETHIS.EVAL
October 28, 2005, 03:54 PM
db
Thanks susannah, you are a GURU!
I really appreciate your help.