16,747
社区成员




function GetFullFileName(Const FileName : String) : string;
begin
Result := FileName + '.jpg';
if not FileExists(Result) then begin
Result := FileName + '.gif';
if not FileExists(Result) then begin
Result := FileName + '.tif';
if not FileExists(Result) then Result := '';
end;
end;
end;