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

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
Forum membership is Free!  Click Join to sign-up
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 TimageEnMView.MultiSelectedImagesList 2x Selected?
 New Topic  Reply to Topic
Author Previous Topic Topic Next Topic  

wesleybobato

Brazil
367 Posts

Posted - Mar 10 2015 :  15:09:55  Show Profile  Reply
Hello Nigel.

TimageEnMView.MultiSelectedImagesList
Capturing this 2 times the Thumbnail selected.

You can Check Please if You Need an Example
Can I Send Him

Many Thanks

Have A Wonderful Day.

xequte

38496 Posts

Posted - Mar 10 2015 :  15:57:32  Show Profile  Reply
Hi Wesley

This is fixed in V6.0.0. I've just emailed you a link to it.


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
Go to Top of Page

wesleybobato

Brazil
367 Posts

Posted - Mar 10 2015 :  16:57:20  Show Profile  Reply
Hello Nigel.

Unfortunately I have still problems.

You fixed MultiSelectedImagesCount only.

MultiSelectedImagesList is still a problem in version 6.

Have a Great Day.
Go to Top of Page

xequte

38496 Posts

Posted - Mar 10 2015 :  17:13:36  Show Profile  Reply
Hi Wesley

Sorry, can you show me the code you are using.


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
Go to Top of Page

wesleybobato

Brazil
367 Posts

Posted - Mar 10 2015 :  17:20:47  Show Profile  Reply
var
_mSelect: TIEArrayOfInteger;

begin
_mSelect := ImgThumbs.MultiSelectedImagesList;
for I := High(_mSelect) downto Low(_mSelect) do
begin
memo1.lines.add(intToStr(_mSelect[I])); //2x...
end;
Go to Top of Page

wesleybobato

Brazil
367 Posts

Posted - Mar 10 2015 :  17:24:31  Show Profile  Reply
Nigel Add This Code in OnKeyDown Event
the TimageEnMView

Key case of
  VK_ADD: CODE HERE ...

Have a Wonderful Day.
Go to Top of Page

xequte

38496 Posts

Posted - Mar 10 2015 :  17:43:28  Show Profile  Reply
Hi Wesley

Here is my code

procedure TForm1.IEFolderMViewKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
var
  _mSelect: TIEArrayOfInteger;
  I: Integer;
begin
  if key = vk_q then
  begin
    _mSelect := IEFolderMView.MultiSelectedImagesList;
    for I := High(_mSelect) downto Low(_mSelect) do
    begin
      memo1.lines.add(intToStr(_mSelect[I])); //2x...
    end;
  end;
end;


The memo is filled correctly with the indexes of selected thumbnails. What are you seeing?

If you are getting duplicates, what method did you use to select the thumbnails?


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
Go to Top of Page

wesleybobato

Brazil
367 Posts

Posted - Mar 10 2015 :  18:11:06  Show Profile  Reply
Hello Nigel.

Thank You for your attention.

I I'll test it again.

Here I will Post the Test Results.

Have a Wonderful Day.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
Jump To: