Focal Point
Can you load 2 fex files from 1 html page?

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

September 28, 2005, 02:49 PM
<Brendanbelfast>
Can you load 2 fex files from 1 html page?
Does anyone know if you can load 2 reports (2 fex files)on the same screen from a single click event of a button on a html page?

Thanks
September 28, 2005, 02:56 PM
Håkan
One way is to run a third procedure which runs both of your procedures, or to call the second one from the first.

/H�kan
September 29, 2005, 07:53 PM
Cyril Joy
Include all ur fex files to a single fex file using the command:

-INC <filename>
September 30, 2005, 02:50 AM
susannah
or have your fex run two jobs
TABLE FILE CAR
...do stuff
ON TABLE HOLD AS MYTAB1 FORMAT HTMTABLE
END
TABLE FILE CAR
..do different stuff
ON TABLE HOLD AS MYTAB2 FORMAT HTMTABLE
END
-RUN
-HTMLFORM BEGIN
!IBI.FIL.MYTAB1;
!IBI.FIL.MYTAB2;
-HTMLFORM END
...this is the simplest form. you can get as nuts as you want within the HTMLFORM tags, just like any other webpage. the !IBI syntax is just serversideincludes.