crewaustin66
Board Regular
- Joined
- Jun 11, 2014
- Messages
- 82
I have some VBA code that exports the source code to a file. The following statement is giving me a problem:
if len(vbproj.Collection(i).fileName)>0 then
'Do something
end if
Unfortunately, looking at the vbproj object I find that vbproj.FileName shows in the watch box as Path not found
. It says that is an integer but it doesn't show a value.
How can I test for this "value" so that I can use it in an IF/END IF?
Thanks,
Crew</path>
if len(vbproj.Collection(i).fileName)>0 then
'Do something
end if
Unfortunately, looking at the vbproj object I find that vbproj.FileName shows in the watch box as Path not found
. It says that is an integer but it doesn't show a value.
How can I test for this "value" so that I can use it in an IF/END IF?
Thanks,
Crew</path>
Last edited: