NDaphid
07-18-2003, 08:22 PM
How do I make my form "scroll-able"?
Example:
I want to put many objects on my form vertically...how does the user scroll through them? For that matter, how do I when I'm designing it?
Thanks
RyRyRy
07-18-2003, 10:57 PM
You could just put all of your controls on a Frame and then just make a scrollbar that moves the frame up and down
NDaphid
07-18-2003, 11:49 PM
You could just put all of your controls on a Frame and then just make a scrollbar that moves the frame up and down
No, that doesn't work.
I guess what I'm really trying to say is there is not enough workable space on the form (it will not let me expand it any further down). Putting the frame on the page with the scroll bar is not working. Can anyone assist me in this?
Cyber_Boy
07-19-2003, 02:17 AM
make a picture box (i guess its better than a frame), and make its height say, 3x the size of the form. Then put it on top of the form, and let just the part you want to see first visible.
Then, put a scrollbar aligned to the right of the form, and you set its values to (Max) 2x the size of the form, and Min 0. Then you just do this.
'IN THE SCROLLBARS CHANGE EVENT
Pic1.top = -1 * (Scrollbar.value)
should help, i used it frequenty