Need help ... Command is not available

K

Kimmy

Hi,

I finished my application but I have huge surprise in
deployment, when user click the save button, I got error
message "Command or Action SaveRecord isn't available for
now" which has never happened on my machine. The record
itself is save anyway. Here is the command

DoCmd.DoMenuItem acFormBar, acRecordsMenu,
acSaveRecord, , acMenuVer70

Do you think that user's work station is missing any
installation option?

Thanks in advance.

Kimmy
 
R

Randy

That syntax was supposed to be phased out, although the
wizards continue to use it. Try:

DoCmd.RunCommand acCmdSaveRecord

Good Luck
 
Top