When I select multiple multi-frame images (e.g. TIFF) in the MIO.ExecuteOpenDialog:
var filename := ImageEnMViewMultiImages.MIO.ExecuteOpenDialog(
'Select Multi-Frame Images', // Title
-1, // DefaultFilter
-1, // Limit To FileType
True, // Always Animate
True, // MultiSelect !!!
iesfMultiImagesOnly); // ShowFormats
if filename <> '' then
begin
// ERROR if multiple files are selected:
ImageEnMViewMultiImages.MIO.LoadFromFile(filename);
end;
If MultiSelect = True in MIO.ExecuteOpenDialog, the multiple files are separated by a '|' character. Do I have to separate these files manually, or is there a built-in method to AUTOMATICALLY load all the multiple selected files in the ImageEnMViewMultiImages control?