vb撰写错误

Home Home
引用 | 编辑 aaaasszx
2012-06-13 21:06
楼主
推文 x0
会vb的帮忙一下,最近在练习Inet物件
 写一个练习程式但是明明网页存在,却不报
有点怪怪的,以下是程式码

On Error Resume Next
Dim s, i, x As Integer
Dim head, rightx() As String
x = 1
If Left(Text1, 7) <> "http://" Then
Text1.Text = "http://" & Text1.Text
Text1.SetFocus
End If
MsgBox "载入档案可能会很久喔!", , "警告 ..

访客只能看到部份内容,免费 加入会员



献花 x0
引用 | 编辑 zsx123665
2012-07-17 12:29
1楼
  
If Left(Text1, 7) <> "http://" Then
Text1.Text = "http://" & Text1.Text
Text1.SetFocus
End If

我没看到网址阿 = =
怎么 你没放吧?

献花 x0
引用 | 编辑 racky1224
2013-03-16 16:05
2楼
  
If Left(Text1, 7) <> "http://你的网址!!!" Then
Text1.Text =     "http://你的网址!!!"         & Text1.Text
Text1.SetFocus
End If
MsgBox "载入档案可能会很久喔!", , "警告"
If Right(Text1, 1) <> "/" Then
Text1.Text = Text1.Text & "/"
Text1.SetFocus
End If
Open App.Path & "\admin.dat" For Input As #1
Do While Not EOF(1)
Line Input #1, a
List1.AddItem a
Loop
Close
s = List1.ListCount

献花 x0