Sometimes you want to OPEN a file and you ahve to wait for a file to be created, i.e. some system t
Sometimes you want to OPEN a file and you ahve to wait for a file to be created, i.e. some system task have to be executed before it dumps
Rate Sometimes you want to OPEN a file and you ahve to wait for a file to be created, i.e. some system t
(1(1 Vote))
On Error GoTo Failure
IXSTS:
DoEvents
If Dir(filename) = "" Then GoTo IXSTS
If FileLen(filename) = 0 Then GoTo IXSTS
IFFILENOWEXISTS = True
Exit Function
Failure:
IFFILENOWEXISTS = False
Exit Function
End Function
Sometimes you want to OPEN a file and you ahve to wait for a file to be created, i.e. some system t Comments
No comments yet — be the first to post one!
Post a Comment