T
tbone
I get an error 424 (object required) on the second line below:
For i = 1 To Projects.Count ' for each *loaded* project, right?
x = Projects(i).FullName ' err 424 on one of the three
If x = spjn Then Exit For
Next i
Projects.Count is 3, and I can see three windows, one for each
project. Yet one of the three is...um, not really there? A mirage?
I can trap and ignore the error, but I'd like to understand what's
going on so I can handle it more intelligently.
thx
tbone
For i = 1 To Projects.Count ' for each *loaded* project, right?
x = Projects(i).FullName ' err 424 on one of the three
If x = spjn Then Exit For
Next i
Projects.Count is 3, and I can see three windows, one for each
project. Yet one of the three is...um, not really there? A mirage?
I can trap and ignore the error, but I'd like to understand what's
going on so I can handle it more intelligently.
thx
tbone