Code problem after converting a db to Access XP

A

Anne

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.
 
D

Douglas J Steele

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()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top