Hi
I added this code to a new form and it correctly returned the selected files (with and without multiple selection. Can you give me more information?
procedure TImageEnViewForm.Button2Click(Sender: TObject);
var
od: TOpenImageEnDialog;
begin
od := TOpenImageEnDialog.Create( Self );
od.Options := od.Options + [ ofAllowMultiSelect ];
od.ModernDialog := True;
if od.execute then
ShowMessage( od.Files.Text );
od.Free;
end;
Note: We fixed an issue in an earlier beta where Files returned two of each item
Nigel
Xequte Software
www.imageen.com