A
Alan
I cannot find information on what the VBA keyword "Name" means, as
in:
Name FileName As FileName
Can someone help me out? The complete code is shown below.
Thanks, Alan
Private Function CheckFileCreated(FileName As String) As Boolean
On Error GoTo ErrorHandler
CheckFileCreated = False
Name FileName As FileName
CheckFileCreated = True
ErrorHandler:
End Function
in:
Name FileName As FileName
Can someone help me out? The complete code is shown below.
Thanks, Alan
Private Function CheckFileCreated(FileName As String) As Boolean
On Error GoTo ErrorHandler
CheckFileCreated = False
Name FileName As FileName
CheckFileCreated = True
ErrorHandler:
End Function