Hi,

I am reading in a csv file using the following code:

entire_file_string = CreateObject("Scripting.FileSystemObject").opentextfile(Input_pth, 1, False, 0).readall

The file i am reading in is rather large.....like 600,000 rows..........

I dont know why i am getting an out of memory error........any ideas on why? And what to do about it?

I have used this code in the past without any issues......but i guess there is always a first time.