Hi,
Can anyone explain why my code enters a loop when the length of a file is zero. I would expect that the loop below would not be entered if strFile.Length is zero.
strFile = strSubCommittees.Split("|")
For i = 0 To strFile.Length - 1
Next i
Thanks.