im am makeing this post to see if eny one can help me with the security, tips, etc for my web browser im makeing in VB
if eny one has eny thing post back A.S.P
this is my code up to now:
Private Sub cmdback_Click(Index As Integer)
On Error Resume Next
wbmain.GoBack
End Sub
Private Sub cmdforward_Click(Index As Integer)
On Error Resume Next
wbmain.GoForward
End Sub
Private Sub cmdgo_Click()
wbmain.Navigate (cmburl.Text)
cmburl.AddItem cmburl.Text
End Sub
Private Sub cmdhome_Click(Index As Integer)
wbmain.GoHome
End Sub
Private Sub cmdref_Click(Index As Integer)
wbmain.Refresh
End Sub
Private Sub Form_Load()
wbmain.Navigate ("www.google.com")
End Sub
Private Sub coburl_keydown()
If keycode = vbKeyReturn Then
wbmain.Navigate cmburl.Text
End If
End Sub
Private Function IsPopupWindow() As Boolean
On Error Resume Next
If wbmain.document.activeElement.tagName = "BODY" Or wbmain.document.activeElement.tagName = "IFRAME" Then
IsPopupWindow = True
Else
IsPopupWindow = False
End If
End Function
wbmain.Silent = True
Private Sub Form_Resize()
On Error Resume Next
wbmain.Width = Me.ScaleWidth
wbmain.Height = Me.ScaleHeight - 1680
End Sub
thanks

New Topic/Question
Reply




MultiQuote



|