ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 TOpenImageEnDialog->Files doesn't work if ModernDialog = true

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
graph_man Posted - Apr 02 2024 : 10:00:28
How to fix it?
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Apr 04 2024 : 14:52:20
Hi

Please try 13.1.0, or email me for the latest beta.

Nigel
Xequte Software
www.imageen.com
graph_man Posted - Apr 04 2024 : 05:42:15
I use ImageEn 13.0.0
and od.Files.Text is empty
xequte Posted - Apr 03 2024 : 15:56:43
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