Ver Mensaje Individual
  #8  
Antiguo 12-09-2008
Khronos Khronos is offline
Miembro
 
Registrado: abr 2007
Posts: 298
Reputación: 18
Khronos Va por buen camino
Código Delphi [-]
uses ShlObj;

function GetProgramsDataDir: pchar;
const
CSIDL_LOCAL_APPDATA = $001c;
var
Buff: pchar;
begin
   Buff:= StrAlloc(MAX_PATH);;
   SHGetSpecialFolderPath(0, Buff, CSIDL_LOCAL_APPDATA, True);
   result:= buff;
end;

Salu2 y gracias
Responder Con Cita