I want to make a shortcut to see the attached files in the directory where I saved the S3D project..when I save the project in the respective folder in our case Test project, the shortcut button should automatically go to where the S3D file is saved..I tried FileName and FILE_NAME..is it possible to do it?
thanks
Program Folder;
Procedure DoIt;
var
PDF:TpdfPrinter;
Begin
PDF:=TpdfPrinter.create(1250);
PDF.FileName := PrgFolder+’SobaSav\Test proiject’;
PDF.ShowPdf;
PDF.Free;
End;
Begin
Doit;
End.

Program Folder;
Procedure DoIt;
var
PDF:TpdfPrinter;
Begin
PDF:=TpdfPrinter.create(1250);
PDF.FileName := PrgFolder+’..\CustomFolder\’;
PDF.ShowPdf;
PDF.Free;
End;
Begin
Doit;
End.
This code works for me… maybe you need “\” at end?
You have to make relative path to your folder from Corpus path!
You have to make relative path to your folder from Corpus path!..what do you mean?
i try with and wihtout and both doesnt work
PDF.FileName := PrgFolder+’SobaSavCustomFolder’;
system cannot find specification