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
 Bug with ImageEN 4.0

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
uko Posted - Jul 20 2011 : 03:01:09
Hi,

just installed ImageEn 4.0 and found a bug:

- Open Sample MultiPage/Thumbnails2
- change GridWith to 0 to get all thumbs aligned on one row
- start application

--> you no longer can select any of the thumbs!

Could you provide a fix for this fast or should I go back to latest version 3 (where it works fine)?

setting: Delphi XE, latest updates


Thank you,
Ulrich
2   L A T E S T    R E P L I E S    (Newest First)
uko Posted - Jul 21 2011 : 02:28:17
Thank you! Will test it the next days.
fab Posted - Jul 20 2011 : 04:11:02
Hi,
thank for reporting.
To fix the bug please open iemview.pas and replace CalcGridWidth method (at the bottom of the source code) with this one:


function TImageEnMView.CalcGridWidth():integer;
begin
  case fGridWidth of
    -1: result := (clientwidth - fHorizBorder) div (fThumbWidth + fHorizBorder);
     0: result := ImageCount;
    else
      result := fGridWidth;
  end;
end;


A fixed version will be released ASAP (which will fixe also the bug with semi-transparent selection and GridWidth=0).