K
Kjuib
I have some Functions in Database1 that I would like to
initate in Database2. This function will update files in
Database1. I do not want to make it into a macro.. nope
not at all. I have the following code, but it does not
work:
Sub AccessNOA2()
Dim A As Object
Set A = CreateObject("Access.Application")
With A
.Visible = False
.OpenCurrentDatabase ("C:\")
.DoCmd.SetWarnings False
MsgBox ("Time to Copy")
.Call "FactorTableTransfer('client', 'NewClient')"
.DoCmd.Close
End With
End Sub
FactorTableTranser() is my function I want to use. Anyone
able to help me with this?
initate in Database2. This function will update files in
Database1. I do not want to make it into a macro.. nope
not at all. I have the following code, but it does not
work:
Sub AccessNOA2()
Dim A As Object
Set A = CreateObject("Access.Application")
With A
.Visible = False
.OpenCurrentDatabase ("C:\")
.DoCmd.SetWarnings False
MsgBox ("Time to Copy")
.Call "FactorTableTransfer('client', 'NewClient')"
.DoCmd.Close
End With
End Sub
FactorTableTranser() is my function I want to use. Anyone
able to help me with this?