[VB-HELP]Substitute Images for scrolling web browser

Initiate Mage
Joined
Nov 20, 2007
Messages
4
Reaction score
0
Ok well the title should explain most of it for itself. I used my own images which I will show a screen of, to scroll the web browser that I implemented into my launcher. Well it doesnt work for some odd reason.

the codes I used are as follows:
Code:
Private Sub PictureBox5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox5.Click
        WebBrowser1.Document.Body.ScrollTop = WebBrowser1.Document.Body.ScrollTop + 10
    End Sub

    Private Sub PictureBox6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox6.Click
        WebBrowser1.Document.Body.ScrollTop = WebBrowser1.Document.Body.ScrollTop - 10
    End Sub

Im not sure what Im doing wrong, could use some feedback on what I can do to fix this problem, or if I did it wrong please give me a heads up on what other way I may go about this.

Shows the buttons I made to give and idea to what Im trying to do.:
Xury - [VB-HELP]Substitute Images for scrolling web browser - RaGEZONE Forums
 
That's a nice GUI i don't code VB but i know what you mean it's easier to just use a scroll bar but you want a custom scroll bar i assume, well just try and get the basic scroll bar and format it to look like something you want, it is possible.
 
Just thought of something. You COULD make the command buttons just send the page up page down key to the web browser xD
 
I truely do not get you, but I like the screenshot though =]
 
Back