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
 Break Action IEFolderMView.RefreshFileList;

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
klausdoege Posted - Jul 11 2019 : 04:50:59
Hello,
i have set:
IEFolderMView.IncludeSubFolders := true;
IEFolderMView.Folder := 'C:\';
And now start -> IEFolderMView.RefreshFileList;

My question is, how can i break this action manually?
The Device C: is verry Big, and the action is finish
after a long long time.


Klaus
www.klausdoege.de
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Jul 15 2019 : 20:51:52
Hi Klaus

Actually please email me for an update that handles it better.

You can then call like this:

// Show progress during fill, and handle user cancelling
procedure TForm1.IEFolderMViewProgress(Sender: TObject; per: Integer);
begin
  ProgressBar1.Position := per;
  if fUserCancelled then
    IEFolderMView1.MIO.Aborting := True;
end;


Nigel
Xequte Software
www.imageen.com
klausdoege Posted - Jul 13 2019 : 12:46:28
Hi Nigel,
i have test this with the your Demo Multi\FolderMView.
When i use a Device with many pictures in differend directorys, and set the Settings Inc-Subfolder, then i can not more doing everything. The program is frozen for the time where running the process.
How can i aborting now the process ?
This is my problem.


Klaus
www.klausdoege.de
xequte Posted - Jul 12 2019 : 06:44:33
Hi Klaus

You can set:

IEFolderMView.MIO.Aborting := True;

Nigel
Xequte Software
www.imageen.com