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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.