Is it possible in vb6.0 to add scroll bars to a form,so that its length and width are increased?
Adding scroll bars to a form
Collapse
X
-
-
Hello,Originally posted by vdraceilIs it possible in vb6.0 to add scroll bars to a form,so that its length and width are increased?
It can be done here is a demonstration try this.
Sorry
I have lost it anyway anytime i ll find i ll sen dyou.Comment
-
I don't believe you can exactly do it, but you could simulate it. There certainly are horizontal and vertical scrollbar controls you can place on the form, and when they are changed by the user you could shift things around so that it looks as though the form is scrolling.
One very simple technique would be to place all of the controls in a large picturebox, and move that when the scrollbars are used.Comment
-
Killers idea i snot bad try to do it.Originally posted by vdraceilIs it possible in vb6.0 to add scroll bars to a form,so that its length and width are increased?
Place a picture box in form.
Now create some controls in picture box
Place a scrollbar Horizental
Set scrollbar max=1000
And write this code
You will see that the controls are movingCode:Picture1.left=HScroll1.Value
GOODLUCK
ALIComment
Comment