Search results

  1. L

    Categorize new email

    Hi, Is there a way to check an email after I open it to see if it has a category and if not open the category dialog box? I want this to happen automatically, not by a button. Can this be done using VBA? Any help is appreciated, Laura
  2. L

    Change Category in a Task via macro

    I am trying to change a task category using a macro by opening the categories dialog box while in the task and have it automatically change the name and mark it complete.. I've started some code, but I can't get anything to work. Any help is appreciated Public Sub TagCompleted() Dim...
  3. L

    Creating a Task from Email and Attaching Original Email

    Hi, I have a macro in the ThisOutlookSession in Outlook to ask if I want to create a task and if Yes, creates it. It works great, but can I attach the orginal sent email to the task in case I need to reply to that original email? Here is the code I have working: Private Sub...
  4. L

    Outlook Macro for flagging messages

    I'm hoping someone can help me. I have the following code in ThisOutlookSession Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) On Error Resume Next prompt$ = "Do you want to flag this message for followup?" If Item.Importance = olImportanceHigh Then With...
  5. L

    VBA Macro to flag sent emails

    Hello, I copied codefrom Diane Peremsky for flagging sent emails...I've put the code in a module... Option Explicit Private WithEvents olSentItems As Items Private Sub Application_Startup() Dim objNS As NameSpace Set objNS = Application.Session ' instantiate objects declared...
Back
Top