首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

vb.net中怎的判断一个word/excel/powerpoint文档是否关闭

2013-01-18 
vb.net中怎样判断一个word/excel/powerpoint文档是否关闭vb.net中怎样判断一个word/excel/powerpoint文档

vb.net中怎样判断一个word/excel/powerpoint文档是否关闭
vb.net中怎样判断一个word/excel/powerpoint文档是否关闭
[解决办法]


Private Function isopen(ByVal path_string As String) As Boolean
  Try
    Dim fs As New IO.FileStream(path_string, IO.FileMode.OpenOrCreate, IO.FileAccess.Read)
    fs.Dispose()
    Return False
  Catch ex As Exception
    Return True
  End Try
End Function

'下面是调用方法:
 If isopen("e:\1.doc") = True Then
     MsgBox("打开")
 Else
     MsgBox("未打开")
 End If

热点排行