In Windows (10) doubleclicking on design file within folder whose name contains a space does not open the file. Receive "file not found" error message.
Its a gererally Problem with all Windows Versions
Simple Solution and fix :
The Windows Shell Extension for edit .dsn is aktually TinyCAD %1
and has to be changed to TinyCAD "%1"
for a proper handling of special caracters in File/Pathnames.
same for Print
MfG
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The Registry.cpp shoud be changed to something like this :
// Associate the file type with a programoRegKey.Create(HKEY_CLASSES_ROOT,sTitle+"\\shell\\open\\command");oRegKey.SetValue(HKEY_CLASSES_ROOT,sTitle+"\\shell\\open\\command",sProgram+" \"%1\"");// Associate the file with a program for printingoRegKey.Create(HKEY_CLASSES_ROOT,sTitle+"\\shell\\print\\command");oRegKey.SetValue(HKEY_CLASSES_ROOT,sTitle+"\\shell\\print\\command",sProgram+" /p \"%1\"");
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Its a gererally Problem with all Windows Versions
Simple Solution and fix :
The Windows Shell Extension for edit .dsn is aktually
TinyCAD %1
and has to be changed to
TinyCAD "%1"
for a proper handling of special caracters in File/Pathnames.
same for Print
MfG
The Registry.cpp shoud be changed to something like this :
Has this been addressed? Can I fix this with a registry edit?