-
File System Objects
Here's the problem...my program searches for certain zip files. Instead of putting the names of the zip files in a list box, I need it to open a text file of the same name and pull certain information out of it and place that in the list box instead.
-
OK, presumably you have a string someplace with the ZIP files name in it. This code below may help
Dim FileID as long
fileid=freefile
open "c:\zipfiles\" & filename & ".txt" for output as fileid
print #fileid, {The information you want to enter}
close #fileid
Hope this helps
Chri