![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
|||||||
| Registrarse | FAQ | Miembros | Calendario | Guía de estilo | Temas de Hoy |
|
|
Herramientas | Buscar en Tema | Desplegado |
|
#7
|
|||
|
|||
|
Hola de nuevo:
Esa función, GetPathFromAlias, es un método del componente TCrpe. Esa información la puedes obtener también mediante esta función que hace uso del objeto Session: Código:
function GetAliasPath (Alias: string) : String;
var
AList : TStringList;
begin
AList := TStringList.Create;
try
try
Session.GetAliasParams (Alias, AList);
result := AList.Values['PATH'];
except
result := '';
raise;
end;
finally
AList.Free;
end;
end;
__________________
Guía de Estilo |
|
|
|