Hi,
I'm trying to import a Paradox file into my database, but I'm getting the following error:
Run-time error '3044':
'O:\DATA\ACCESS\TG070723.DB' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
Here is the code:
strLoc = "O:\DATA\ACCESS\"
strDatabase = [Forms]![frmImportDataInput]![txtDatabaseName]
DoCmd.TransferDatabase acImport, "Paradox 7.x", strLoc & strDatabase
I've checked the path, I know it is spelled correctly. I have access to the drive where the database is located. I can manually import the file by using the Get External Data command. Anyone have any suggestions on what my problem is?
Thanks
Dan
I'm trying to import a Paradox file into my database, but I'm getting the following error:
Run-time error '3044':
'O:\DATA\ACCESS\TG070723.DB' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
Here is the code:
strLoc = "O:\DATA\ACCESS\"
strDatabase = [Forms]![frmImportDataInput]![txtDatabaseName]
DoCmd.TransferDatabase acImport, "Paradox 7.x", strLoc & strDatabase
I've checked the path, I know it is spelled correctly. I have access to the drive where the database is located. I can manually import the file by using the Get External Data command. Anyone have any suggestions on what my problem is?
Thanks
Dan