Search results

  1. Forum Admin

    VBA environment disabled

    It sounds like the vba project file is corrupt. Unfortunately, there is no way to repair it - you need to delete or rename it and start with a fresh one.
  2. Forum Admin

    Outlook 2013 default file error

    Did you get this solved? This error is more common with older software. As long as you have the newest iTunes installed, syncing should work like it always has
  3. Forum Admin

    Outlook VBA to open Excel attachment and send recipient's email address to a workbook cell?

    It would be possible. This will save the attachment from the open message and open it - you'll need to reference Excel and grab the value from the desired cell. Dim oItem As Outlook.MailItem Dim strfile As String Dim sText As String Private Declare Function ShellExecute Lib "shell32.dll"...
  4. Forum Admin

    USA in Business Card View

    Sorry about that - i was out of town all week and didn't have a chance to respond. I would copy a few to a new folder, or if the macro is only working on selected items, not the entire folder, select one and run the macro.
  5. Forum Admin

    Cannot Change password on host compter

    The shared user can be deleted. There should be a way to reset the password but I don't know how. :)
  6. Forum Admin

    outlook cal for mac changes times of recurring meetings on its own

    I'm not familiar with this bug - I wouldn't be surprised if its related to syncing. (Many bugs involving the time zones are caused by syncing.) Are all events affected or just the appointments within a specific time period?
  7. Forum Admin

    Sync categories between Exchange and 2007

    So, removing a category from a message never syncs the change to the other computers? If you change the read/unread state does the category change sync? (Or settings a flag.) I'm guessing the category change doesn't trigger outlook to pick up the change - I'll see if i can repro it.
  8. Forum Admin

    Advanced Search Question

    Thanks for the update!
  9. Forum Admin

    Wrong display name in from column when removing pf replication

    In what way was the display name wrong? Did you follow the steps in http://technet.microsoft.com/en-us/library/bb331970(EXCHG.80).aspx ?
  10. Forum Admin

    OUTLOOK TODAY SCREEN

    What calendar are the appointments in? Outlook Today only displays events from the default calendar. It won't include the events on the icloud calendar.
  11. Forum Admin

    ¿What property of mailitem can be used like primary key?

    You could set your own guid in a custom field. or get the message id from the header.
  12. Forum Admin

    Outlook 2007 IMAP Account Rules Issues

    The 32k limit does not apply to IMAP accounts, only Exchange server accounts. Rules won't work on imap messages if you only download headers and they can be buggy with full messages because imap gets they header first. You'll have the most problems with rules when outlook is downloading a lot...
  13. Forum Admin

    Offline folders password forgotten

    Is it asking for the password for the folders or for the email account? Typically, the password for offline folders is your account password. If the account is no longer valid and it opens in outlook, export the contents to a pst file and remove the account from your profile. if it is a pst...
  14. Forum Admin

    Rule to pop a warning dialogue on certain actions

    This is a tough one, because I think a run a script rule would be best for it, but you can't run a script in an after send rule. Try this macro - it watches the outbox and when a message has delayed delivery set, it is triggered. The 4501 date is used to prevent it from being triggered with all...
  15. Forum Admin

    Reminders for all members of a shared calendar

    It's not a privacy issue - is a reminder spam issue. Outlook only shows reminders from the user's accounts, not shared mailboxes. There is macro that will send email reminders or the users can add the calendar to their profile and copy the events to their own calendar. The exchange admin could...
  16. Forum Admin

    Macro to open Public Folders subfolder?

    You don't want to open the link, you want to open the folder. That is doable. Samples here: http://www.slipstick.com/developer/code-samples/shortcut-open-outlook-folders/ - you'll use olPublicFoldersAllPublicFolders as the GetDefaultFolder type. Are you opening the folder to put things in...
  17. Forum Admin

    Using Codesync 2 Tool - Which Calendar

    personal should be the one - the icloud archive is a backup file and can be closed - the others with icloud in the name are also backups, made at different times.
  18. Forum Admin

    Emails hang in Outbox

    The Delay sending checkbox is enabled when you click that button - if you open the options dialog using the expander button or direct replies to, it won't be checked. (Direct replies to will be filled in if you click its button.) What antivirus do you use? Any other addins that are the on the...
  19. Forum Admin

    Outlook 2013 not fixed correctly by Microsoft!!

    Did you disable UAC? It needs to be enabled to use the Store with an admin account. On the files - move, the files in the old user account to your my documents folder then delete the old user account - if you have a usb drive, you can copy everything under C:\Users\old-username to a drive. You...
  20. Forum Admin

    bcc and Google imap

    BTW, you'll choose the last option, to save in the local folders. This will put sent items in with the calendar and contacts. The recommendation for gmail is to not save sent item (top option) to avoid duplicates, which are created when you save sent items in the gmail sent folder.
Back
Top