emailing from a database

G

Guest

Recently, a user came to me and said that the email code that use to run as
of last week no longer runs in the database I support. The odd thing was with
this request is that not everyone had the function stricken. But if a user
that couldn't use the email function logged into the computer of someone who
could use the function. The ablity to use the function was lost. What might
be the problem with the emailing ablity? The data is emailed as an rtf
report.
 
G

Guest

here is what the click event calls:

Private Sub Command52_Click()
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70

Dim stDocName As String

stDocName = "radar report"
DoCmd.SendObject acSendReport, stDocName, acFormatRTF, , , , "RADAR",
"New RADAR for your information"
'DoCmd.SendObject acSendReport, stDocName, acFormatHTML, , , , "RADAR",
"New RADAR for your information", True


End Sub
 
G

Guest

I am thinking it could be something in that users profile. The code posted
looks fine. If there was a change in software recently that may have had an
effect.
 

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