Search results

  1. C

    Visual Basic auto create task from email including attachments

    No error messages it just didnt assign the task to the category. My subject line will always start with [Ticket # then the rest of the subject line will vary. I used the following in my code as my keyword "[Ticket"
  2. C

    Visual Basic auto create task from email including attachments

    I used the first code from your reply and it did not work for me. I'm not sure what I'm doing wrong. Would i be able to assign a category by the sender?
  3. C

    Visual Basic auto create task from email including attachments

    Yes thats what i want the code to do.
  4. C

    Visual Basic auto create task from email including attachments

    Thank you. What code would i need to add to assign the task to a category filtered by the subject line.
  5. C

    Visual Basic auto create task from email including attachments

    I would like the email attachment to be included in the task. What would i need to add to the code below: Sub ConvertMailtoTask(Item As Outlook.MailItem) Dim objTask As Outlook.TaskItem Set objTask = Application.CreateItem(olTaskItem) objTask.Subject = Item.Subject...
Back
Top