Hi Susan,
1) If it's a fixed-width textfile, you can just fiddle with the import
specification. Instead of trying to define all the fields that actually
exist in the textfile, define a single wide field that spans multiple
textfile fields that don't want to import. That way you may be able to
get all the fields you are interested in to fit inside the 255-field
limit.
2) If it's a tab-delimited file, you could go to
http://unxutils.sourceforge.net/ and download the package of Windows
versions of Unix utilities. This includes one called "cut" which takes a
textfile and creates a new file containing only the fields you specify.
"cut" also works with other delimiters such as comma , and pipe |.
3) If you've got a CSV file (commas between fields, and text fields
enclosed in quotes), "cut" may not do the job. It will count the fields
wrongly if there are any commas in the data.
If that's the case, things get a bit trickier. I have written a utility
that will convert textfiles with any number of fields into a format that
Access can import, but you need Perl installed on your computer.