No subject warning

M

markusx1a

Outlook used to give me a warning if I attempted to send an email
without having first filled in the Subject field. I think somewhere
along the way I may have checked the box: "Don't show me this again."
Now I would like to turn that warning back on. Any suggestions on how
to go about it?

Using MS OUTLOOK 2003.

TIA,
Markus
 
A

AndreasRoeder

Outlook used to give me a warning if I attempted to send an email
without having first filled in the Subject field. I think somewhere
along the way I may have checked the box: "Don't show me this again."
Now I would like to turn that warning back on. Any suggestions on how
to go about it?

Using MS OUTLOOK 2003.

TIA,
Markus

Hi Markus,
you can do it by programming

Please copy and paste
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

If IsNull(Item.Subject) Or Len(Item.Subject) = 0 Then
MsgBox "Subject is empty!!!", vbCritical, "Outlook "
Cancel = True
End If
End Sub
 

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