Jump to content
xisto Community
kvarnerexpress

Program Where Users Can Have There Own Edit Space

Recommended Posts

I whould like to write a program where users can have there own edit space. Now I use this app window and I placed a button. Next I scaled the screen so the button was out of sight. Now I scroll down to the button but... What happens is that before I release the mouse button I will not see the changing of scrolling so there is no button. After I released the button there will be however I like to see it real time.Does someone have an solution? Is there an other way to create such an edit space?Well I go search alone. But if someone could give me a push in the right direction I whould be verry greatfull.Greetings,kvarnerexpress

Share this post


Link to post
Share on other sites

Set these properties for your form (in the object inspector - the toolbar on your left side): Form1 -> HorzScrollBar -> Smooth -> set to "True"Form1 -> HorzScrollBar -> Tracking -> set to "True"Form1 -> VertScrollBar -> Smooth -> set to "True"Form1 -> VertScrollBar -> Tracking -> set to "True"Or, place this code in your OnCreate event for your form:Form1.HorzScrollBar.Smooth:=True;Form1.HorzScrollBar.Tracking:=True;Form1.VertScrollBar.Smooth:=True;Form1.VertScrollBar.Tracking:=True;

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.