A
ApexData
Hi
I am using the following statement to check for a file:
If Len(Dir(strFileName)) = 0 Then
'Not Found'
Endif
The problem is if strFileName = "" then
MsgBox Dir(strFileName) 'returns the name of some combobox that does
not even exists in my project, but does exist in an old project.
Before we cry corruption, does Dir("") return a legitimate value???
Thanks Greg
I am using the following statement to check for a file:
If Len(Dir(strFileName)) = 0 Then
'Not Found'
Endif
The problem is if strFileName = "" then
MsgBox Dir(strFileName) 'returns the name of some combobox that does
not even exists in my project, but does exist in an old project.
Before we cry corruption, does Dir("") return a legitimate value???
Thanks Greg