Hallo,
i searched the hole source but i didn't found a function for
function IOFileTypeToFileExt(IOFileType:TIOFileType):String;
begin
case IOFileType of
ioTiFF : Result:='TIF';
...
function FileExttoIOFileType(FileExt:String):TIOFileType;
begin
If FileExt='TIF' then Result:=ioTiFF; else
if FileExt='JPG' then
...
Is there anywhere such a function?
Thanks
Ralf