I have a project that is using code generate by PB COM Browser for MS Excel. When I compile it, it takes a long time Generating the Source code for the Excel include file.
Any suggestion why this is happening? What can I do to speed this up?
Andy Flowers
hmmm.... could be due to FireFly having to parse through all that code each time the codegen files are created. I assume that you have that code included into FF as a "module".
Maybe try saving that code into a separate file and "#INCLUDE" it into the project by making a reference to it in the FF_AppStart handler? Files that are #INCLUDE'd are not parsed by FF.
Paul, placing it in the AppStart fixed the problem. Thanks