how to modify a text file with an array
The code assumes that you have an array with 1 to x rows, and 3 columns. The
content of that array will be printed into a file with the fullname of
what's in the LogFileName variable.
--
Best regards
Michael Bauer - MVP Outlook
: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: http://www.vboffice.net/product.html?pub=6&lang=en
Am Fri, 19 Sep 2008 08:37:28 -0700 (PDT) schrieb R Tanner:
Hi,
I have the following code. How would I modify a text file with this
array?
Open LogFileName For Append As #FileNum
Print #FileNum, arrdata(1 to myitems.Count, 1 to 3)
Close #FileNum
|