VB Question: Handling Each File in a Folder?

  • Thread starter Thread starter Vik Rubenfeld
  • Start date Start date
V

Vik Rubenfeld

A Visual Basic newbie question:

Say I have a folder with 100 tab-text files in it. I'd like to import
each one into its own Graph Datasheet. Is there a way to tell Visual
Basic to do an operation to each file in a folder full of files?

Thanks in advance for any info.

-Vik
 
Say I have a folder with 100 tab-text files in it. I'd like to import
each one into its own Graph Datasheet. Is there a way to tell Visual
Basic to do an operation to each file in a folder full of files?

Getting each file's the easy part:

Use DIR to get a list of files
http://www.rdpslides.com/pptfaq/FAQ00464.htm

Getting at the datasheet is a bit more of an exercise, but there's been some
sample code posted here recently.
 
Back
Top