Add an option in FileSelectPopup() to escape the backslash (\) to (\\) in path names. CVI and Win-7 do not work with single backslashes in path names.
example:
fp=fopen("C:\temp\TEST.txt","w"); // open the file for writing *** Will not work. ***
fp=fopen("C:\\temp\\TEST.txt","w"); // open the file for writing *** Good ***
If we can add the backslash(s) in using a FileSelectPopup() option, this problem goes away.