When you open the file in either place, open it as #1.Originally posted by big_k105
Is there no way to check if a file is open. if there is please tell me if not then jst say "no there isnt". and i will drop this question. and try something else. thanks
then you can always tell if it is currently open with:
VB Code:
if FreeFile = 1 then 'File is not open currently Else 'File is already open end if
Of course this isnt the "normal" function of FreeFile, but you could take advantage of it in this way.




Reply With Quote