B
Beatrice
This first line of code has an error message, User-defined
type not defined.
What is this code looking for?
Function fIsRemoteTable(dbRemote As DATABASE, strTbl As
String) As Boolean
Dim tdf As TableDef
On Error Resume Next
Set tdf = dbRemote.TableDefs(strTbl)
fIsRemoteTable = (Err = 0)
Set tdf = Nothing
End Function
type not defined.
What is this code looking for?
Function fIsRemoteTable(dbRemote As DATABASE, strTbl As
String) As Boolean
Dim tdf As TableDef
On Error Resume Next
Set tdf = dbRemote.TableDefs(strTbl)
fIsRemoteTable = (Err = 0)
Set tdf = Nothing
End Function