November 2007
Intermediate to advanced
408 pages
11h 3m
English
IN THIS CHAPTER
Case Study: Using .ini Files 332
Access supports several different file types for import and export. However, sometimes you encounter a file that doesn’t fit into a pattern that allows you to use the import/export process. For those instances, you may need to use file I/O. The I/O stands for input and output functions. These functions allow you to read and write data directly to a file, one line at a time.
Using VBA, the I/O process works like this:
• Use VBA’s Open function to open a file.
• Use VBA’s Input function to read in a line from the file.
• Use ...
Read now
Unlock full access