设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 673|回复: 0
打印 上一主题 下一主题

[宏/菜单/工具栏] [灌水]怎么判断文件是否锁定的函数

[复制链接]
跳转到指定楼层
1#
发表于 2003-11-21 17:06:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
'The following sample Visual Basic for Applications macro calls the function FileLocked and
'passes the full path and name of the file for testing. If the function returns True, error
'number 70 "ermission Denied" has most likely occurred, and the file is currently open and
'locked by another process. If the function returns False, the file is not open, and the
'macro opens the document.

Sub IsFileLocked()
   Dim strFileName As String

   ' Full path and name of file.
   strFileName = "C:\test.doc"

   ' Call function to test file lock.
   If Not FileLocked(strFileName) Then
      ' If the function returns False, open the document.
      Documents.Open strFileName
   End If
End Sub


Function FileLocked(strFileName As String) As Boolean
   On Error Resume Next

   ' If the file is already opened by another process,
   ' and the specified type of access is not allowed,
   ' the Open operation fails and an error occurs.
   Open strFileName For Binary Access Read Lock Read As #1
   Close #1

   ' If an error occurs, the document is currently open.
   If Err.Number <> 0 Then
      ' Display the error number and description.
      MsgBox "Error #" & Str(Err.Number) & " - " & Err.Description
      FileLocked = True
      Err.Clear
   End If
End Function
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-5-29 03:43 , Processed in 0.078882 second(s), 25 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表