Overflow question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I'm attempting to import a .txt file into Access but get a pop up that only
says "Overflow".

What could be the cause of this?

Thanks in advance,
Jack
 
Normally you get an overflow when you've tried to assign a value to a
variable which is greater than the variable size - e.g. trying to make a byte
variable equal to 300. Do you have a counter in the loop which presumably is
reading the text file one line at a time? (I'm assuming you're using VBA to
import the text file).
 
Back
Top