Remote user across vpn

D

Donna

We have Access 2003 on all computers. 2 users use quote database from our
office (files on server, progam on computers) with no problems. Also have
one remote user who is coming in thru vpn and he is also working fine. No
issues with bumping into eachother
We just added an additional remote user coming in thru vpn. He can see data
that was already created, but when he tried to enter a new record, none of
the drop down fields contain any data. I have double checked his
permissions. He has same version as the rest of us.
 
A

Arvin Meyer [MVP]

It may be a timing issue. The first thing I'd try though, is to put a copy
of the successful VPN user's FE on the workstation of the unsuccessful one.
If it still fails, try requerying the form with each new record (aircode):

Sub Form_Current()
If Me.NewRecord = True Then
Me.Requery
End If
End Sub
 
Top