This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Tuesday, June 26, 2007 12:06:19 PM(UTC)
Groups: Registered
Posts: 4
We are currently using Document Imaging 13.0 in VB6 and we had a request to change the scale on the side scrollbar when an image is opened. Basically if you click on the scroll bar it only moves a few pixels so it might take 1000 clicks to get to the bottom. Instead they want maybe 10 clicks to go through the entire document such as word or something. I have looked for a property to set for the scroll bar but I haven't found anything. Thanks for th help.
#2
Posted
:
Wednesday, June 27, 2007 5:53:09 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
You can change the scroll bar scaling using the following
properties:
HScrollInfo.Page and the HScrollInfo.Line properties
VScrollInfo.Page and the VScrollInfo.Line properties
Please try the following code sample in a small VB6 project:
LEAD1.Load "d:\test.jpg", 0, 1, 1
LEAD1.HScrollInfo.Page = LEAD1.HScrollInfo.Max / 10
LEAD1.HScrollInfo.Line = 10
LEAD1.VScrollInfo.Page = LEAD1.VScrollInfo.Max / 10
LEAD1.VScrollInfo.Line = 10
#3
Posted
:
Friday, June 29, 2007 9:32:39 AM(UTC)
Groups: Registered
Posts: 4
That is exactly what I was looking for. Thanks
John
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.