扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:杨冶军 来源:天极网 2007年10月14日
关键字:
在本页阅读全文(共2页)
/*载入Form*/ Private Sub Form_Load() /*程序装入后进入IE设定的起始页*/ WebBrowser1.GoHome End Sub /*改变Form尺寸*/ Private Sub Form_Resize() /*改变窗口大小后同时改变控件的大小*/ WebBrowser1.Width = Form1.ScaleWidth WebBrowser1.Height = Form1.ScaleHeight - 900 Label1.Width = Form1.ScaleWidth Label1.Top = Form1.ScaleHeight - 300 End Sub Private Sub BackButton_Click() /*返回上一个页面*/ WebBrowser1.GoBack End Sub Private Sub ForwardButton_Click() /*进入下一个页面*/ WebBrowser1.GoForward End Sub Private Sub GoButton_Click() /*浏览输入的页面*/ WebBrowser1.Navigate (Text1.Text) End Sub Private Sub StopButton_Click() /*停止浏览*/ WebBrowser1.Stop End Sub Private Sub Text1_KeyPress(KeyAscii As Integer) /*输入地址后进行浏览*/ If KeyAscii = 13 Then WebBrowser1.Navigate (Text1.Text) End If End Sub Private Sub WebBrowser1_BeforeNavigate(ByVal URL As String, ByVal Flags As Long, ByVal TargetFrameName As String, PostData As Variant, ByVal Headers As String, Cancel As Boolean) /*将当前显示的页面的URL地址显示在Text1上*/ Text1.Text = URL End Sub Private Sub WebBrowser1_StatusTextChange(ByVal Text As String) /*Label1显示当前页面装入情况*/ Label1.Caption = Text End Sub |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者