coding part for creating the internet browser

Posted by Unknown , Saturday, September 18, 2010 12:33 AM

1    Private Sub PictureBox4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox4.Click
2         
3WebBrowser1.Navigate(TextBox1.Text)
4    End Sub

to navigate webbrowser 


1Private Sub PictureBox2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox2.Click
2        WebBrowser1.GoBack()
3    End Sub


for back button



1Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
2        WebBrowser1.GoForward()
3    End Sub


for forward button


1Private Sub PictureBox3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox3.Click
2        WebBrowser1.Refresh()
3    End Sub


for refresh button


full scape coding fo rcsreating a internet browser

Public Class Form1
02 
03  
04 
05 
06    Private Sub PictureBox2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox2.Click
07        WebBrowser1.GoBack()
08    End Sub
09 
10    Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
11        WebBrowser1.GoForward()
12    End Sub
13 
14 
15    Private Sub PictureBox3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox3.Click
16        WebBrowser1.Refresh()
17    End Sub
18 
19 
20    Private Sub PictureBox4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox4.Click
21        WebBrowser1.Navigate(TextBox1.Text)
22 
23 
24    End Sub
25 
26End Class
                                                                     --------------
it is codeing for creating a  simple internet browser  with basic buttons.....

0 Response to "coding part for creating the internet browser"

Post a Comment