R
Rick
Hi all,
I am designing a database in Access 2000 file format using Access 2002.
I have a form with a subform. The subform has some fields for data-entry
and a Save button.
The code behind the Save button is:
Private Sub cmdSave_Click()
On Error GoTo Save_Error:
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Call SendEmail(txtIssueNumber) 'function to send outlook email
Save_Exit:
Exit Sub
Save_Error:
<error trapping stuff>
End Sub
The problem: this form works fine on a PC that's running Access 2002. But
on a PC with Access 2000, I get error message 2046, saying the Save command
isn't available, when I click the save button.
Any ideas?
Thanks,
Rick
I am designing a database in Access 2000 file format using Access 2002.
I have a form with a subform. The subform has some fields for data-entry
and a Save button.
The code behind the Save button is:
Private Sub cmdSave_Click()
On Error GoTo Save_Error:
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Call SendEmail(txtIssueNumber) 'function to send outlook email
Save_Exit:
Exit Sub
Save_Error:
<error trapping stuff>
End Sub
The problem: this form works fine on a PC that's running Access 2002. But
on a PC with Access 2000, I get error message 2046, saying the Save command
isn't available, when I click the save button.
Any ideas?
Thanks,
Rick