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
 ImageEnMView how to keep thumbnail images in a single horizontal row

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
john_siggy@yahoo.com Posted - Sep 19 2022 : 09:27:54
Hey Nigel,

How do I maintain a horizontal ImageEnMView with a single row of images. When an image is added to end of the row of images, rather than maintaining the single row and possibly going offscreen and invoking the horizontal scrollbar, the last image wraps around making the ImageEnMView consist of two rows. How can ImageEnMView support only horizontal scrolling and maintain a single row of thumbnails. Thanks in advance...
4   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Sep 20 2022 : 05:20:19
No, I'm afraid that is not an option at this time. Though it is a good idea for a later update.

Nigel
Xequte Software
www.imageen.com
john_siggy@yahoo.com Posted - Sep 19 2022 : 15:48:05
Did I see a right and left pointing arrows at the ends of a single row of thumbnails for navigation ? <[][][][][]>
xequte Posted - Sep 19 2022 : 14:18:08
Hi

A single row is normally ImageEnMView.GridWidth := 0;

But will create a horizontal scrollbar.

If you use ImageEnMView.GridWidth := -1;

There will be as many rows as can fit horizontally, which can give you a vertical scrollbar.

Your method should work to lock the width to a certain number of images.

Can you send me a screenshot of the overlap issue you are seeing.


Nigel
Xequte Software
www.imageen.com
john_siggy@yahoo.com Posted - Sep 19 2022 : 09:56:00
by setting ImageEnMView.Gridwidth = ImageEnMView.ImageCount i get a one line height ImageEnMView as desired. Problem is Thumbnails overlap horizontally. How can prevent thumbnails from overlapping ?