Jump to content



Welcome to KnowledgeSutra - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!
- - - - -

Program Where Users Can Have There Own Edit Space


1 reply to this topic

#1 kvarnerexpress

    Super Member

  • Kontributors
  • PipPipPipPipPipPipPipPipPip
  • 407 posts

Posted 30 August 2005 - 01:40 PM

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

#2 bureX

    Super Member

  • Kontributors
  • PipPipPipPipPipPipPipPipPip
  • 318 posts

Posted 30 August 2005 - 01:59 PM

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;




Reply to this topic


This post will need approval from a moderator before this post is shown.

  


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users