Page 1 of 1

Flickering Thumbnail Control

Posted: Sun Oct 09, 2016 7:21 pm
by win568
Hi

After Loading a Thumbnail with LoadFromGDViewer I iterate through all Images to Set the Text with Thumbnail.SetItemText. Unfortunatelly the Thumnail not only sets the Text, it scrolls to the Item, Where i change the Text. In the Next Step i focus the First item. When i load a PDF File with a lot of pages, this causes to a flickering.

Is there s possibility to Lock the Scrolling of the Thumbnail ?? I use the ActiveX Edition.

Re: Flickering Thumbnail Control

Posted: Tue Oct 11, 2016 11:09 am
by win568
Can you give me an advice ??

Re: Flickering Thumbnail Control

Posted: Wed Oct 12, 2016 5:22 pm
by Loïc
Hi,

Please do not cross post here an into the helpdesk. We've already replied in the helpdesk asking for a way to reproduce the issue as we are not able to replicate it from our end.

Re: Flickering Thumbnail Control

Posted: Thu Oct 13, 2016 8:33 am
by win568
Hi Loic

Hm. I posted the question days before. As i got no answer, i used your ticket system.

Re: Flickering Thumbnail Control

Posted: Thu Oct 13, 2016 9:59 am
by Loïc
For others users interested in the solution (Delphi / Com-ActiveX), here the answer from Roland:
Hi

I found the issue, that causes to this problem. To connect the ThumnailEx to the Viewer i used:

Result := Thumbnail.LoadFromGdViewer(GDViewer.fViewer.ControlInterface) = GdPictureStatus_OK;

After changing this to

Result := Thumbnail.LoadFromGdViewer(GDViewer.fViewer.DefaultInterface) = GdPictureStatus_OK;

it works without Flickering.