Code problem after converting a db to Access XP

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

After converting a db from 97 to xp, Im getting "run time error 3703:
operation not supported on replicable databases that have not been converted
to the current version."

The following lines are causing a problem:

Me!SbfrmLogins![empID = strUser
Me!SbfrmLogins![LoginDateTime= Now()

I've also tried it like this with the same result:

Me!SbfrmLogins![empID].Value = strUser
Me!SbfrmLogins![LoginDateTime].Value = Now

I've checked Help to see if syntax has changed for setting a control
value... looks the same to me. What am I missing here?

Does anyone have any advice on a source for xp programming (book or website?)?

Thanks for your help.
 
Assuming SbfrmLogins is the name of the subform control on your main form
(which may or may not be the same name as the form that's being used as a
subform), try:

Me!SbfrmLogins.Form!empID = strUser
Me!SbfrmLogins.Form!LoginDateTime= Now()
 
Back
Top