Hi Bart, > I have a list of people in a text file that I want to > read into an array and then manipulate the data. The > list of names changes so I don't know how big to make > the array. I loop as I read a line...
Since you're reading the entire file anyway, it might be faster for you to read the entire file into memory (use FSO) then split the resutls on vbCrLf. Regards, Shawn K. Hall http://12PointDesign.com/ http://ReliableAnswers.com/ '// ======================================================== Suppose you were an idiot. And suppose you were a member of congress. But I repeat myself. -- Mark Twain (1835-1910) '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [email protected] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
