I use Access 97 (German Version) -
- I open a form to enter a part number into a local table
- 'on update' of the part number field I start cross
checking to see if the new part number exists already
in a remote master table (linked via ODBC)
- cross checking is done in a
Public Function _
FindMarvArtik(MArtikNr As Variant) As Boolean
- MArtikNr is the part number entered into the form
- on most PCs this works fine, but on one of the PCs I get
Runtime Errors 3014 - which means
"additional tables can't be opened"
(in German: "Zusätzliche Tabellen können nicht
geöffnet werden"
Can anyone guess what happens and what could be
done to fix the problem ?
AnStr
from Munic Germany
- I open a form to enter a part number into a local table
- 'on update' of the part number field I start cross
checking to see if the new part number exists already
in a remote master table (linked via ODBC)
- cross checking is done in a
Public Function _
FindMarvArtik(MArtikNr As Variant) As Boolean
- MArtikNr is the part number entered into the form
- on most PCs this works fine, but on one of the PCs I get
Runtime Errors 3014 - which means
"additional tables can't be opened"
(in German: "Zusätzliche Tabellen können nicht
geöffnet werden"
Can anyone guess what happens and what could be
done to fix the problem ?
AnStr
from Munic Germany