Hello there! I am beginner with Visual Basic and I need something to be resolved .You see I have started to use Visual Basic and I am going to some classes to, because I want to learn how to work with it so I could make something really cool after a while. My question is, how can I make some link, a web page open with a command button? Thanks a lot!
Hi there! Because you are a beginner we are going to give you some help!
In a web browser control on form and check Microsoft internet Controls in Project references
see if the ieframe.dll is in c:\windows\system32 directory
Private Sub Command1_Click()
create new instance of Internet Explorer
Set Web New SHDocVw.InternetExplorer
make the Internet Explorer visible
Web. Visible True
Web. Navigate "http://www.yahoo.com" 'change the path here to cgi....etc
End Sub
Hope this will help! Cheers!