今天找了好久,都是用Microsoft Web 浏览器,打开已确认的网址;
以下是在窗体打开时在WebBrowser控件中显示offiice中国社区网页;
Private Sub Form_Load()
WebBrowser.Navigate "http://www.office-cn.net/offspace/html/index.html"
End Sub
Private Sub WebBrowser_DownloadComplete()
On Error GoTo exitsub
WebBrowser.Visible = True
exitsub:
End Sub