Jan 24, 2002 #1 dcupola Programmer Joined Jan 20, 2002 Messages 1 Location BR How can i verify this?????
Jan 24, 2002 #2 chrisrf Technical User Joined Dec 20, 2001 Messages 20 Location GB You can use this: On Error Resume Next Open YourFile For Input As #1 If Err.Number = 55 then 'file is open Else 're-close file Close #1 Next Chris. Upvote 0 Downvote
You can use this: On Error Resume Next Open YourFile For Input As #1 If Err.Number = 55 then 'file is open Else 're-close file Close #1 Next Chris.