Hello people,
I am using VFP9. The project I am working on is quite large and there are many smaller VFP9 projects within the directory structure of main project.
Debugging the main project within the IDE is no problem, but now I need to debug one of the smaller projects within my project.
I know, that I could start the smaller project in my IDE and I could just start debugging that project with some test data. But all those small projects rely heavily on the main projects directory strucutre and files. A lot of GUI components as well.
Now to avoid copying all needed source files into every single sub project, I want to step into the line, that calls the executable of the sub project:
[tt]DO exe_of_subproject WITH toParameter[/tt]
But when I try to do this, the debugger just show "Source not available". I tried calling the name of main file of the sub project instead:
[tt]DO main_of_exe IN exe_of_subproject WITH toParameter[/tt]
But still no luck. All executables are shipped with debug information, so that's not the problem.
My colleagues on site also have no clue on how to approach this problem. Does anybody here have an idea on how to resolve this? Or maybe even an alternative approach to this? My end goal is to able to play around with the code of one of those sub projects, as the source code doesn't contain any documentation and I have to refactor most of it.
I am using VFP9. The project I am working on is quite large and there are many smaller VFP9 projects within the directory structure of main project.
Debugging the main project within the IDE is no problem, but now I need to debug one of the smaller projects within my project.
I know, that I could start the smaller project in my IDE and I could just start debugging that project with some test data. But all those small projects rely heavily on the main projects directory strucutre and files. A lot of GUI components as well.
Now to avoid copying all needed source files into every single sub project, I want to step into the line, that calls the executable of the sub project:
[tt]DO exe_of_subproject WITH toParameter[/tt]
But when I try to do this, the debugger just show "Source not available". I tried calling the name of main file of the sub project instead:
[tt]DO main_of_exe IN exe_of_subproject WITH toParameter[/tt]
But still no luck. All executables are shipped with debug information, so that's not the problem.
My colleagues on site also have no clue on how to approach this problem. Does anybody here have an idea on how to resolve this? Or maybe even an alternative approach to this? My end goal is to able to play around with the code of one of those sub projects, as the source code doesn't contain any documentation and I have to refactor most of it.