FinalPrime
Technical User
DoCmd.TransferDatabase acImport
Once the password is accepted, my
application replaces objects if needed.
The Transer is so slow, I must limit the
number of objects replaced to just a few.
Any clues on how to find the problem?
Windows XP, Office 2000, over a network, 40 users.
-example of actual code should coding be the problem
Do Until rP.EOF
DoCmd.DeleteObject acModule, rP!Object
DoCmd.TransferDatabase acImport, "Microsoft Access", "K:\MyFolder\SomeDataBases\ObjectFile.mdb", _
acModule, rP!Object, rP!Object
rP.movenext
loop
thanks,
FinalPrime
Once the password is accepted, my
application replaces objects if needed.
The Transer is so slow, I must limit the
number of objects replaced to just a few.
Any clues on how to find the problem?
Windows XP, Office 2000, over a network, 40 users.
-example of actual code should coding be the problem
Do Until rP.EOF
DoCmd.DeleteObject acModule, rP!Object
DoCmd.TransferDatabase acImport, "Microsoft Access", "K:\MyFolder\SomeDataBases\ObjectFile.mdb", _
acModule, rP!Object, rP!Object
rP.movenext
loop
thanks,
FinalPrime