Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reserved Error

Status
Not open for further replies.

jossimon

Programmer
Feb 4, 2005
39
US
I am getting an error that simply says, "Reserved Error." what does this mean???!!!
 
"Reserved Error."
You haven't the permission to raise this error.

Sorry, I couldn't resist.
 
At least you are amused... here is my code.
stText = "Ticket Status: " & varStatus & Chr$(13) & Chr$(13) & "Ticket Number: " & stTicketID & Chr$(13)
'stText = stText & "Received Date: " & RecDate & Chr$(13)
stText = stText & "Received Date: " & RecDate & Chr$(13) & "Assigned To: " & varName
'stText = stText & " Priority Level: " & " Case Type: " & Chr$(13)
'stText = stText & Chr$(13) & "Ticket Category: " & Chr$(13) & Chr$(13)
stText = stText & Chr$(13) & "User: " & varUserName & Chr$(13)
stText = stText & "Issue: " & Chr$(13) & Me.txt_Issue & Chr$(13) & Chr$(13)
'stText = stText & "This is an automated message, please do not respond to this email."

'Write the email content for sending to the asignee
DoCmd.SendObject , , acFormatTXT, varTo, varCC, , stSubject, stText, -1

I play with commenting things out... and randomly get the error "Reserved error" or "SendObject action has been cancelled". Is there some rule that I should know about for sending email from a form?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top