09/01/2011, 16:42
|
| | Fecha de Ingreso: septiembre-2009
Mensajes: 12
Antigüedad: 15 años, 2 meses Puntos: 0 | |
Respuesta: Problema navegador VB.net Bien ya lo he solucionado, tube que hacer todo de nuevo, si ha alguien le sirve esto pues bien :
Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
AppManager.MainForm = Me
Dim ofrm As New frmBrowser
Dim oTab As New browser.TabPage(ofrm) ' Esto es lo que hace que se abra en un nuevo tab '
Me.tc1.TabPages.Add(oTab.Form) ' Aui simplemente añadimos la tab '
tc1.TabPages(0).CloseButtonVisible = False
' Estos ya son otros ajustes '
If AppManager.StartURL = "" Then
'Do we show the start page or have the browser go home?
If My.Settings.UseStartPage = True Then
ofrm.wb.DocumentText = My.Resources.StartPage
Else
ofrm.wb.GoHome()
End If
Else
ofrm.wb.Navigate(AppManager.StartURL)
End If
LoadFavorites()
LoadSearchProviders()
End Sub
Private Sub LoadHistory()
'
End Sub |