Debugging Across embedded Final Builder Projects

Hi,

I've got a finalBuilder project that calls some other utility finalbuilder projects. As I'm stepping through the main project, is there anyway that I can step into the sub projects to see exactly where any problems occur ?  Occaisonally, finalbuilder has allowed me to do this but I can't do it with any form of regularity.

Also, is there any way to save / load action lists within projects? This would be a workaround for the above problem and probably a cleaner way to organise the system.

 

Thanks,
Steve.

 

Hello ?

Is there anyone there ?

 

Any thoughts on this would be gratefully appreciated...

 

thanks,

Steve.

 

Hi Steve

Stepping into included projects is not possible without a major rework of the IDE, included projects have their own execution engine instance, and would require that we enable the IDE to open multile projects.


Hi Vincent,

am sure that I've been stepping through a project, opened up a project that is an included project, placed a breakpoint in it which gets hit as I run across projects.

The problem is that this only seems to work very sporadically...  i think I've seen it happen twice.

A colleague has had this occasionally happen also.

 

If this was repeatable then it would be a sufficient workaround.

 

Thanks in advance.


Steve.

 

Yeah, I do this all the time. The solution is not to “include” the other project, but simply to run fb5.exe from the command line. I use branches like this:

If %UsingGUI%
-Execute program C:\Program Files\FinalBuilder 5\FinalBuilder5.exe /r “M:\Config\Build.fbp5” /a /f /vBootstrapConfigFile="%ConfigFile%";Bootstrap=“YES”
Else
-Include project %FBProjectsDir%\Build.fbp5 (with variables passed below)

There are advantages to both ways. Calling finalbuilder5.exe is certainly slower, but easier to follow on the screen. Also note that the log ends up in a different place.

Steve