I'm using A03 at home and A97 at work... I created a function that stores the ascii values of an entire file into a table, so that I can export the file at any time. The function works great at home, but when I brought it to work, it doesn't work anymore.
I was using the:
I found out that the CurrentProject object doesn't work, I guess, in A97, so I tried:
but all this does is give me is 'Operation is not supported for this type of object.'
Does anyone know how I might fix this?
-Bean
"Everything should be made as simple as possible, but not simpler." -Albert Einstein
I was using the:
Code:
CurrentProject.Connection.Execute "...
Code:
CurrentDb.Connection.Execute "...
Does anyone know how I might fix this?
-Bean
"Everything should be made as simple as possible, but not simpler." -Albert Einstein