Hey there
uses ShlObj;
...
function GetDefaultSavePath(): String;
var
APath : pChar;
begin
GetMem(APath, MAX_PATH + 1);
SHGetSpecialFolderPath(Application.Handle, APath, CSIDL_PERSONAL, False);
SetString(Result, APath, lstrlen(APath));
Result := Trim(Result);
FreeMem(APath)...