|
-
Oct 29th, 2008, 09:19 AM
#1
Thread Starter
Hyperactive Member
[RESOLVED] Check for Open
How do you check if a file is already open and locked for editing before going to open it again via VBA code in Access 2003, opening a word document?
Swoozie
Somedays you just should not get out of bed.
-
Oct 29th, 2008, 09:33 AM
#2
Re: Check for Open
Code:
Sub CheckForFileStatus()
'Will return true if file is open
MsgBox IsFileOpen("P:\MyFile.Doc")
End Sub
Function IsFileOpen(FileName As String)
Dim iFilenum As Long
Dim iErr As Long
On Error Resume Next
iFilenum = FreeFile()
Open FileName For Input Lock Read As #iFilenum
Close iFilenum
iErr = Err
On Error GoTo 0
Select Case iErr
Case 0: IsFileOpen = False
Case 70: IsFileOpen = True
Case Else: Error iErr
End Select
End Function
A good exercise for the Heart is to bend down and help another up...
Please Mark your Thread " Resolved", if the query is solved
MyGear:
★ CPU ★ Ryzen 5 5800X
★ GPU ★ NVIDIA GeForce RTX 3080 TI Founder Edition
★ RAM ★ G. Skill Trident Z RGB 32GB 3600MHz
★ MB ★ ASUS TUF GAMING X570 (WI-FI) ATX Gaming
★ Storage ★ SSD SB-ROCKET-1TB + SEAGATE 2TB Barracuda IHD
★ Cooling ★ NOCTUA NH-D15 CHROMAX BLACK 140mm + 10 of Noctua NF-F12 PWM
★ PSU ★ ANTEC HCG-1000-EXTREME 1000 Watt 80 Plus Gold Fully Modular PSU
★ Case ★ LIAN LI PC-O11 DYNAMIC XL ROG (BLACK) (G99.O11DXL-X)
★ Monitor ★ LG Ultragear 27" 240Hz Gaming Monitor
★ Keyboard ★ TVS Electronics Gold Keyboard
★ Mouse ★ Logitech G502 Hero
-
Oct 30th, 2008, 06:58 AM
#3
Re: [RESOLVED] Check for Open
I would add one more error number to cover the file being checked not existing. If that is the case a run time error occurs.
Code:
Select Case iErr
Case 0: IsFileOpen = False
Case 53: IsFileOpen = False '53 = File Not Found
Case 70: IsFileOpen = True
Case Else: Error iErr
End Select
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|