编程中国 | 业界新闻 | 技术文章 | 视频教程 | 下载频道 | 程序源码 | 个人空间 | 编程论坛  
全能 ASP / PHP / ASP.NET 主机,支持月付专业 MSSQL 数据库空间,支持月付专业 MySQL 数据库空间,支持月付学习型 ASP/PHP/ASP.NET 主机 30元/年
发新话题
打印

求高手解答:我出先实时错误-2

求高手解答:我出先实时错误-2

Private Sub Form_Load()
     Dim s As String
     Me.Caption = ""
     Label1.Caption = "url"
     Combo1.Text = ""
     Combo1.Top = Label1.Height + 700
     Combo1.Left = 50
     WebBrowser1.Top = Combo1.Top + Combo1.Height
     WebBrowser1.Left = 0
     Form_Resize
     StatusBar1.Style = sbrSimple
     ProgressBar1.ZOrder
     Dim TextLine
     Open App.Path & "\1.txt" For Input As #1 ' 打开文件。
     Do
     Line Input #1, s
     Combo1.AddItem s
     Loop Until EOF(1) = True
     Close
     WebBrowser1.Navigate ""
     WebBrowser1.GoHome
     Form1.Picture = LoadPicture(App.Path & "\imag\meyaob.jpg")
     End Sub

Private Sub Form_Resize()

     On Error GoTo a
     Combo1.Width = Form1.Width - 100
     WebBrowser1.Width = Combo1.Width
     WebBrowser1.Height = Form1.Height - Combo1.Height - 1730
     ProgressBar1.Top = Me.Height - StatusBar1.Height - 330
     ProgressBar1.Left = 0.25 * StatusBar1.Width
     ProgressBar1.Width = 0.75 * Me.Width - 250
a:
     End Sub
     Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)
     Dim frmWB As Form1
     Set frmWB = New Form1
     frmWB.WebBrowser1.RegisterAsBrowser = True
     Set ppDisp = frmWB.WebBrowser1.object
     frmWB.Visible = True
     frmWB.Picture = LoadPicture(App.Path & "\imag\meyaob.jpg")
     frmWB.WebBrowser1.SetFocus

     End Sub
     Private Sub Form_Unload(Cancel As Integer)
     Dim i As Integer
     Open App.Path & "\1.txt" For Output As #1
     For i = 0 To Combo1.ListCount - 1
     Print #1, Combo1.List(i)
     Next
     Close #1
     End Sub


Private Sub Combo1_Click()
     '转到指定网址
     WebBrowser1.Navigate Combo1.Text
     End Sub

     Private Sub Combo1_KeyDown(KeyCode As Integer, Shift As Integer)
     Dim i As Long
     Dim existed As Boolean
     If KeyCode = 13 Then
     If Left(Combo1.Text, 7) <> "http://" Then
     Combo1.Text = "http://" + Combo1.Text
     End If
     WebBrowser1.Navigate Combo1.Text
     For i = 0 To Combo1.ListCount - 1
     If Combo1.List(i) = Combo1.Text Then
     existed = True
     Exit For
     Else
     existed = False
     End If
     Next
     If Not existed Then
     Combo1.AddItem (Combo1.Text)
     End If
     End If
     End Sub

Private Sub WebBrowser1_DownloadBegin()
     '下载开始时状态栏显示“Now Linking...”
     StatusBar1.SimpleText = "加载中..."
     End Sub

     Private Sub WebBrowser1_DownloadComplete()
     '下载完成时状态栏显示"Link Finished”
     StatusBar1.SimpleText = "完毕"
     ProgressBar1.Value = 0
     End Sub

  Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
     '下载进行时进度条变化
     If ProgressMax = 0 Then Exit Sub
     ProgressBar1.Max = ProgressMax
     If Progress <> -1 And Progress <= ProgressMax Then
     ProgressBar1.Value = Progress
     End If
     End Sub


     Private Sub WebBrowser1_TitleChange(ByVal Text As String)
     Combo1.Text = WebBrowser1.LocationURL
     Me.Caption = WebBrowser1.LocationName
     WebBrowser1.SetFocus
     End Sub

出现实时错误
求高手解答啊
先谢谢了

TOP

一般来说,我会说明一下错误在哪行,因为这样有助于别人帮我解决问题。
个人Blog http://www.multiple1902.cn
个人网站 http://www.tcdongli.com
天才动力程序设计视频 http://www.tcdonglirecords.cn [under construction]

TOP

他没有显示啊,只有一个确定按扭,按了就退出去了

TOP

发新话题