Sizlere Visual Basic 6 da Web Browser Programı nasıl yapılır onu anlatacağım.Gayet kolay bir şekilde sizinde web browserınız olabilir.
Konuyu yine hem resimli hem de video olarak anlatacağım.
Önce yeni bir proje oluşturuyoruz.Daha sonra ise aşağıdaki nesneleri ekleyeceğiz.
- 4 Adet Command Button
- 1 Adet Text Box
- 1 Adet Label
- 1 Adet Web Browser
[ Command 1 = Adrese Git , Command 2 = Durdur , Command 3 = Geri , , Command 4 = İleri ]
[ Text Box = Girilen Site Adresi ]
[ Label = Yükleniyor Durumu ]
[ Web Browser = Microsoft İnternet Control ]
Web Browser = Microsoft İnternet Control Aşağıdaki gibi ekliyoruz.
Aşağıdaki kodları form kısmına ekliyoruz.
Private Sub Command1_Click()
WebBrowser1.Navigate Text1.Text
End Sub
Private Sub Command2_Click()
WebBrowser1.Stop
End Sub
Private Sub Command3_Click()
WebBrowser1.GoBack
End Sub
Private Sub Command4_Click()
WebBrowser1.GoForward
End Sub
Private Sub Text1_Change()
End Sub
Private Sub WebBrowser1_DownloadBegin()
Label1.Caption = Text1.Text + " Yükleniyor."
End Sub
Private Sub WebBrowser1_DownloadComplete()
Label1.Caption = Text1.Text + " Yüklendi"
End Sub
Ve Projemiz hazır arkadaşlar.
Bu Siteden Alıntıdır.