Scroll bar on a Winform Panel

jalyons95

New member
Joined
Nov 19, 2010
Messages
2
Programming Experience
5-10
Is there a way to hide the scroll bars on a VB.Net panel? We have written code to allow the user to scroll using a touch screen and do not need to see the scroll bar. I know it has to be there for the scrolling to work, but would like to hide it from view.

Thanks
 
I can do that, but then scrolling will not work. We are looking for the functionality of an android screen on a Windows Mobile 6.1 platform.

Thanks
 
I can do that, but then scrolling will not work.
No, then auto-scrolling won't work. There's nothing to stop you from scrolling manually. You could put one Panel inside another so that the inner Panel could be the full size needed and the outer just provide a view port, then change the inner Panel's location using drag & drop. You could also just change the Location of all the child controls using drag & drop.
 
Back
Top