Page 2 of 2

Posted: 2 Nov 2017 17:14
by mdosnov2016
pfc\windowsApi\fileSystem_api\fileSystem_api.pro(455,13)

is not my own code and I don't understand it to find out where it was called from.

Posted: 2 Nov 2017 21:05
by Harrison Pratt
Do you not understand Thomas's explanation on using the Debugger or my more primitive suggestion of going to the fileSystem_api.pro file and searching for where that clause is used (Ctrl-Alt-Shift-F)?

If you feel overwhelmed by using the Debugger, you can try the primitive approach of searching your entire project (Ctrl-Shift-F) for file-related keywords (one at a time) like "consult", "save", "read", etc. and scrutinize the code paying particular attention to the name of the file used and making sure the file (stream) is closed. It is possible that a clause reading a file may have FAILed and left the file or stream open.

I strongly recommend spending time studying Thomas's approach with the Debugger -- it's a skill you will need as you continue with this application conversion.