Welcome Guest! To enable all features, please Login or Register.

Notification

Icon
Error

Options
View
Last Go to last post Unread Go to first unread post
#1 Posted : Tuesday, June 26, 2007 12:06:19 PM(UTC)
jmvetter

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.
 

Try the latest version of LEADTOOLS for free for 60 days by downloading the evaluation: https://www.leadtools.com/downloads

Wanna join the discussion? Login to your LEADTOOLS Support accountor Register a new forum account.

#2 Posted : Wednesday, June 27, 2007 5:53:09 AM(UTC)

Adnan Ismail  
Guest

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)
jmvetter

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.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.202 seconds.