Hi to all,
i used your sample program (below) to adjust my program do get pdf file
This is ok til version 1.7xx of PDFCreator
Now with the PDFCreator 2.2 samething has changed and the below program does not works !
Seems it uses other keys of windows
Any help ?
Tks
Romeo/Zingoni
*****
FUNCTION SETTAREG( cDir , cFile , cAutoSave )
LOCAL oReg
oReg:=TReg32():New( HKEY_CURRENT_USER , "SOFTWARE\PDFCreator\Program" )
oReg:Set( "UseAutosave" , cAutoSave )
oReg:Set( "UseAutosaveDirectory" , cAutoSave )
oReg:Set( "AutosaveDirectory" , UPPER( cDir ) )
oReg:Set( "AutosaveFilename" , UPPER( cFile ) )
oReg:Close()
RETURN .T.
******