Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Greetings,

C++
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    VScrollBar1.Maximum = (Panel1.Height - Me.Height) + 500
    VScrollBar1.SmallChange = 50
    VScrollBar1.LargeChange = 100
End Sub
Private Sub VScroll1_Change()
    Panel1.Top = 0 - VScrollBar1.Value
End Sub


I tried this code, but doesn't seem to work, any help to get here ? :)

What i want is to scroll through my Form, maybe a Panel isn't the right way to do it, or maybe i'm using a Wrong Code ?

Visual Studio 2010 :)
Posted
Updated 24-Sep-12 1:40am
v2
Comments
Vijay Walunj,Navi mumbai 24-Sep-12 7:44am    
if possible provide detail code.i think you want call function on onscroll event of panel.you can do this by calling javascript function on onscoll event and set panelId.onscrolltop(value).
OriginalGriff 24-Sep-12 7:57am    
What are you actually trying to achieve? Because I am fairly sure that isn't the way to do it, but I can't work out what you are trying to do!
fRodzet 24-Sep-12 8:13am    
I'm trying to creat a Vertical scroll for my Form. so that i can, just like on this site, scroll up and down through my Form. I read that code @ another forum. But doesn't seem to work.

1 solution

Okay so i t couldn't be any more easy than this.

I just set AutoScroll to True @ the form and it works like a charm now.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900