Search results

  1. Forum Admin

    set onedrive calendar as default in Outlook

    If you set the outlook.com data file as default, the outlook.com calendar will be default. I'm not sure if outlook will create birthday events for contacts but if the contacts are in outlook.com, it will create the events in a separate birthday calendar. You can select the startup folder in...
  2. Forum Admin

    Can't open same msg file more than once at the same time in Outlook 2010

    I don't think you can avoid that error - outlook puts a lock on it and another user can't use it until the first is done with it.
  3. Forum Admin

    Foward email to Trello without FW in subject and parce the text

    I think regex will work to capture the text - a sample is here: http://www.slipstick.com/developer/regex-parse-message-text/#comment-181863 Assign the values to a string - Dim strSubject(2) As String '2 = number of case statements then get each string strSubject(i) = M.SubMatches(1)...
  4. Forum Admin

    Outlook 2013 and outlook.com issues when using mail alias

    That is a known bug that they are working on. I'll see what I can find out about it.
  5. Forum Admin

    Contacts disappear in public folder search

    Well, you are apparently marking them read when you click off. Is the search for unread items? To change the reading pane settings, go to View tab, Reading pane, Options. Not marking items read when you change selection should help.
  6. Forum Admin

    synching outlook 2010 with google on android phone

    So he's not using a gmail email address, just using it as a go-between for getting work mail on the phone? In that case, he could forward work mail to outlook.com instead... but that still means an extra data file in outlook - with gsyncit, he can sync the calendar and contacts in the POP3 pst...
  7. Forum Admin

    Printing Advanced Search Output Screen

    It's just a limitation of Advanced Find. If you use Instant Search and the Phone list (or other table view) you can print a table.
  8. Forum Admin

    Outlook 2007 - Email Question - POP3 to IMAP

    Outlook didn't add the spam tag - an antispam addin did. (Assuming AOL didn't.) A macro to fix it is here - http://www.slipstick.com/outlook/email/add-a-file-number-or-keyword-to-the-subject-line-of-messages/ Replace the 3 lines beginning with For each with the following - it runs on all...
  9. Forum Admin

    Deleting Attachments(embedded) in Outlook 2013

    Is it your calendar? Was the message from your mailbox or someone else's?
  10. Forum Admin

    synching outlook 2010 with google on android phone

    He'll need a different utility. Calendar sync tools are listed at http://www.slipstick.com/outlook/sync-outlook/using-google-calendar-sync-utility-outlook/ - gsyncit and companionlink are the ones I like, but there are others.
  11. Forum Admin

    Setting RULES with more than one condition in MS OUTLOOK

    I have no idea why it's not in it - rules were added back in the Outlook 2000 time frame and haven't really changed much since, save for adding more conditions and actions. They haven't edited any existing conditions. I'm not sure if a run a script rule would be efficient but there is at least...
  12. Forum Admin

    Can't move the items. The item could not be moved. It was either already moved or deleted, or access

    Are the messages completely downloaded? Although that shouldn't cause this error - outlook should go get any missing bodies. It's possible the message is corrupt - can you identify which message it is?
  13. Forum Admin

    Rule starting a VB macro against incoming email

    What is the full code? Something in it is telling outlook to use the selection, not the new message.
  14. Forum Admin

    Outlook 2013 Cannot set outlook.com account as default data file

    How many accounts are in your profile? If you have any Exchange account, you can't set the an Outlook.com EAS account's data file as the default. The Exchange account data file needs to be default.
  15. Forum Admin

    Cannot successfully add gmail IMAP account to Outlook 2013.

    What antivirus do you use? Do you use 2 factor authentication? Is basic auth or or on? (http://www.outlook-tips.net/tips/gmail-outlook-unable-connect-password-prompts/)
  16. Forum Admin

    Setting up my PA's Outlook

    If her marking the messages as read is not showing up when you view the account, either categorize or flag with mark complete. Both are equally easy to do - double click to flag complete, or click to set the category assigned to quick click category. Another option is for her to folder the...
  17. Forum Admin

    Custom Today Page

    Ah, another one of Microsoft's brilliant ideas that they left die. :( It would probably be easiest to use the view control, but most antivirus software will kill the script for security reasons.
  18. Forum Admin

    Auto Create new Task upon Current Task completion

    change one of the if lines: If TypeOf Item Is Outlook.TaskItem AND instr(1, item.categories, "Complete") = 0 Then or If Task.Status = olTaskComplete AND instr(1, task.categories, "Complete") = 0 Then the first one kicks it out quicker if the task has the category. I'm not sure it really...
  19. Forum Admin

    Accidentally Deleted exchange server email account in Outlook 2007

    The easiest way to get it back is to use system restore to roll back till before you removed it. http://www.slipstick.com/problems/pst-repair/convert-an-exchange-offline-file-ost-to-a-personal-file-pst/ otherwise, you need to use an expensive utility.
  20. Forum Admin

    Auto Create new Task upon Current Task completion

    I'm using this and getting just one new task - bu, if you are copying it as an identical task, why not just using the regenerate task feature? Private WithEvents Items As Outlook.Items Private Sub Application_Startup() Dim Ns As Outlook.NameSpace Set Ns = Application.GetNamespace("MAPI")...
Back
Top