Search results

  1. Forum Admin

    Outlook body to word document

    You either need to use a run a script rule to copy the mail body or save the message as a docx file. This copies the body to a document Sub SaveWord(Item As Outlook.MailItem) Dim oWord As Word.Application Set oWord = CreateObject("Word.Application") With oWord .Documents.Add...
  2. Forum Admin

    Open Outlook Calendar and Tasks views with Folder pane off

    No, it's not possible. You can't have the folder pane show on some modules and not show in others. You'll need to turn it off and on - Alt+F1 will roll through on, off, and minimized.
  3. Forum Admin

    Outlook(hotmail)Yahoo problem

    When you use the hotmail website, it uses outlook.com, not Outlook 2013. The website uses a different SMTP server and bypasses potential problems between the server & Outlook 2013. Disable Avast and send a test message - avast is one of the programs that filters mail.
  4. Forum Admin

    How to get information about a set of meetings

    I don't know if this will do everything that you need - http://www.vboffice.net/product.html?cmd=detail&id 06073 - it would make it easier if it does. A macro could do it too, but the ROI would be a lot lower if the utility does what you need.
  5. Forum Admin

    VBA script to auto download attachments and rename file according to subject line

    Can you open the original file ok if you save it to the hard drive? The error means the extension does not match the file type so either the code is wrong or the attachment is corrupted.
  6. Forum Admin

    Just installed Outlook 2010 on computer and user is getting a 0x80004005 error

    Are you using Norton antivirus? That has been known to cause this error message.
  7. Forum Admin

    Outlook 2010 (32) and Exchange 2010 (sp3) sender info not displaying in Outlook

    I've seen this with imported EML files but not with messages that are sent to the server and downloaded by outlook.
  8. Forum Admin

    To: and Cc: not displaying when forwarding/replying to .eml files

    Was the mail imported using Outlook's Import wizard? I know that will cause this issue - exporting from Live Mail or OE to Outlook retains the header. EML files opened from the hard drive should behave the same as imports and be missing the to/cc fields.
  9. Forum Admin

    VBA, Rule that will Auto Reply based on time of day

    You can use a run a script rule. Sub AutoReplywithTemplate(Item As Outlook.MailItem) If Time < #8:00:00 AM# Or Time > #12:00:00 PM# Then Set myReply = Item.Reply myReply.HTMLBody = "my comment" & vbCrLf & myReply.HTMLBody ' Change display to send after testing myReply.Display End If End Sub...
  10. Forum Admin

    Regenerate recurrence not working

    The task is regenerated for 2 days now, not 2 days from the current due date. If you don't use the regenerated option, it will go in series, every 2 days.
  11. Forum Admin

    Outlook 2007 Macro Save Contact

    Does it need closed and reopened or just saved? If your object variable is oContact, you'd use this to save it: oContact.Save Or, try resolving the address (I'm not sure of the correct code - my brain is still on holiday :)) .Resolve
  12. Forum Admin

    Start date of occurrence same as PatternStartDate

    It sounds like its working as expected, unless 'm not understanding the problem (which is possible). As an FYI, see http://www.slipstick.com/developer/print-list-recurring-dates-vba/ for code that gets each occurrence out.
  13. Forum Admin

    Duplicate Attachments in Content.Outlook

    I'll have to check on it, but normally Outlook will wrte a new copy each time you open the attachment or message. So... I'm guessing one is added when you select the message and display it in the reading pane and one when you open the message in a new window or open the attachment. If you...
  14. Forum Admin

    Adding Week Number on Calender

    In file, options, calendar you can enable Show Week numbers in month and date navigator. If you can't get it to work the way you want or need, you'll need to add them to the calendar as all day appointments. (You can create it in Excel and import it.)
  15. Forum Admin

    URGENT Cancel and remove imported pop3 mails

    Click ON frequently used fields to expand the menu and choose All Mail Fields from that menu.
  16. Forum Admin

    Outlook.com calendar on Blackberry 10

    Are you using the Exchange account setup or does BB have an Outlook.com ActiveSync type? On my droid, i used exchange/corporate option and m.hotmail.com as the server.
  17. Forum Admin

    Outlook 2007 Copy Email Address in To Field

    The To field is .To - it should work if you properly reference the mailitem instead of contactitem. Do you need to copy to clipboard or just copy the field to use in another form?
  18. Forum Admin

    Outlook Custom form check if there an attachment

    Should be able to use a Send event in the form to check for attachments. Unfortunately, I don't have any code samples handy. Click the View Code button in the custom form - then Script, Event Handler and choose Send
  19. Forum Admin

    outlook 2013 does not mark multiple forward messages as forward

    Hmm. You're right. I'm not aware of a workaround for it, but have a message into support about it.
  20. Forum Admin

    Calendar event acting odd

    This is what my google calendars invites look like - I have my office365 address set up as a g+ account and can use the calendar, so the From address is mine. This was created by 3rd party scheduling software (ScheduleOnce, which doesn't sync with Office365, yet - only google) with a...
Back
Top