登录  
 加关注
   显示下一条  |  关闭
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!立即重新绑定新浪微博》  |  关闭

凌晨阳光

 
 
 

日志

 
 

VBA 判断是否可以访问网络(互联网/局域网)  

2010-12-30 10:32:19|  分类: Excel自动化 |  标签: |举报 |字号 订阅

  下载LOFTER 我的照片书  |

方法一: API方式

Private Declare Function InternetGetConnectedState Lib "wininet.dll" _

(lpdwFlags As Long, ByVal dwReserved As Long) As Long '申明API

Sub net()
    Dim netweb As Long
    If InternetGetConnectedState(netweb, 0) <> 0 Then
       MsgBox "可以"
    Else
       MsgBox "不可以"
    End If
End Sub

 方法二:XMLHTTP

Sub net()

Dim xml6 As Object

Set xml6 = CreateObject("Microsoft.XMLHTTP")

URL = "http://chiensq.blog.163.com"

xml6.Open "GET", URL, False

xml6.Send

If xml6.Status = 200 Then

MsgBox "可以"

Else

MsgBox "不可以"

End If

End Sub

方法三:ping

Public Function Pings(strMachines As String) As Boolean
aMachines = Split(strMachines, ";")
For Each machine In aMachines    Set objPing = GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery("select * _

from Win32_PingStatus where address = '" & machine & "'")
    For Each objStatus In objPing
    If IsNull(objStatus.StatusCode) Or objStatus.StatusCode <> 0 Then
        Debug.Print ("machine " & machine & " is not reachable")
        Pings = False
    Else
        Pings = True
    End If
    Next
Next
End Function

方法四:shell

Sub Chksys()

Dim oExec
oExec = CreateObject("Wscript.shell").Run("ping chiensq.blog.163.com -n 1", 0, True)
If oExec = 0 Then
msgbox "可以"
Else
msgbox"不可以"
End If
End Sub

 方法五:局域网

Sub net()
Dim fso
    Set fso = CreateObject("Scripting.FileSystemObject")
    If fso.FileExists("\\172.20.31.32\123\ver.txt") Then '文件夹FSO.folderexists(“\\172.20.31.32\123”)
        MsgBox "存在"
    Else
        MsgBox "不存在"
    End If
    Set fso = Nothing
End Sub

  评论这张
 
阅读(1235)| 评论(0)

历史上的今天

评论

<#--最新日志,群博日志--> <#--推荐日志--> <#--引用记录--> <#--博主推荐--> <#--随机阅读--> <#--首页推荐--> <#--历史上的今天--> <#--被推荐日志--> <#--上一篇,下一篇--> <#-- 热度 --> <#-- 网易新闻广告 --> <#--右边模块结构--> <#--评论模块结构--> <#--引用模块结构--> <#--博主发起的投票-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2018