Showing posts with label web browser. Show all posts
Showing posts with label web browser. Show all posts

Friday, November 9, 2007

web viewer like browser



so many browser spread in internet.
wow, vb can make it too, even it's so easy.
we need an object called Microsoft Internet Controls.
this object defaultly installed when we install vb.
here is some code..

Private Sub Command1_Click()
End
End Sub

Private Sub Form_Load()
'show web file
web.Navigate App.Path & "\contoh.htm"
End Sub