Search results

  1. J

    Find and Highlight text in outlook

    Im not quite sure if that will work, because that example seemed to search mail that was already there. Using the rules wizard, once an email comes in with a specific subject line, i need to highlight certain words in that email automatically. Ive seen things like "outlook.inspector", i just am...
  2. J

    Find and Highlight text in outlook

    Yes i will be. I just need to search for a word, and then highlight that word in an incoming email.
  3. J

    Find and Highlight text in outlook

    Hello! I need to use outlook vba to find and highlight certain text in the body of an email. Thanks!
  4. J

    Outlook body to word document

    Yes that was it! Thanks sooo much!!
  5. J

    Outlook body to word document

    Here is my code: Sub SaveWord(Item As Outlook.MailItem) Dim oWord As Object Dim sName As String Dim dtDate As Date Set oWord = CreateObject("Word.Application") sName = Item.Subject dtDate = Item.ReceivedTime With oWord .Documents.Add .Selection.InsertBefore (Item.Body)...
  6. J

    Outlook body to word document

    Yeah, that didnt work either, it just opens the document with the body of the email there, and nothing happens. Also, i tried putting that line under the "with oWord" as ".SaveAs.....", and the document didnt even open at all, literally nothing happened. Thanks for helping me through this, its...
  7. J

    Outlook body to word document

    I had the both versions of the code "ActiveDocument.SaveAs Filename:='my path'" as well as "ActiveDocument.SaveAs 'My Path" as well as "oWord.Save as 'My Path'", and literally nothing happened. Word just opens and has the text from the email there, but it is not saved.
  8. J

    Outlook body to word document

    Thanks! Im running into a couple of issues however, it works if i change "Dim oWord As Word.Application" to "Dim oWord As Object" and i have no idea why. When it is the former i get the error "Compile Error: User Type Not Defined". Also, i am running into issues saving the document into a...
  9. J

    Outlook body to word document

    Hello! There are about a million references on how to send an email from a word document, but nearly none on how to create a word document from an email automatically. I need a script that, using rules on outlook, reads a certain word in the subject line, and then automatically creates a word...
Back
Top