Search results

  1. M

    Change the selected Message in the Outlook window

    It is. See the methods AddtoSelection, and ClearSelection provided by the Explorer class.
  2. M

    How can I increase/faster outlook VBA Macro Speed ?

    In general the performace is better if you forego the progress dialog. Instead, simply display a MsgBox when done. Also, joining the rulelist string could take one or more seconds for 1000 loops. Since you run all rules, why not just say that instead of listing all the rule names?
  3. M

    determine to which address an email has been sent

    Yes, the header would be the only way to get it.
  4. M

    GetSelectNamesDialog Pre-fill search box

    Thanks Robin, I´ve corrected the sample. And yes, it´s my code. If you want to share it, please add a link to the page you´ve got it from.
  5. M

    auto send email when meeting closes from a shared calendar only

    There´s no event in Outlook that tells you when a meeting has ended. For a full automatic process you´d need to look at intervals into the calendar, find all meeting items, decide, which one has ended, and which of the ended ones hasn´t yet sent the email. That´s a lot of work for a beginner...
  6. M

    Select / activate first email item in the searched query

    The AdvancedSearchComplete event gives you with SearchObject.Results the list of found items. Pass the first one to ActiveExplorer.AddToSelection
  7. M

    Set all subfolders to not autoarchive

    No, it does return either on object or nothing. If you see a string, it´s the object´s default property and means actually your method of testing is wrong; but it also means the object cannot be nothing.
  8. M

    Set all subfolders to not autoarchive

    So the message does exist. Back to my first reply: Delete the On Error Resume Next in order to see if an error occurs.
  9. M

    Set all subfolders to not autoarchive

    I´m sorry, I cannot figure out which part you don´t understand. You mentioned this line returning no resultSet oStorage = oFolder.GetStorage("IPC.MS.Outlook.AgingProperties", olIdentifyByMessageClass)] Which should mean that the folder doen´t have archive settings stored. That´s what you want...
  10. M

    Set all subfolders to not autoarchive

    if GetStorage returns an object, call its Delete method.
  11. M

    Set all subfolders to not autoarchive

    "No setting" is a valid setting, it just doesn´t need to be stored. So, no stored value means "no setting". In other words, if you want to turn off the auto archive function, delete the hidden message that stores any other archive settings.
  12. M

    Set all subfolders to not autoarchive

    Without knowing the code you´re referring to we can only guess what´s going on. If it contains an On Error Resume Next you don´t get an error message even if one occurs. If the hidden message GetStorage is looking for doesn´t exist I´say there´s no auto archive setting for that folder.
  13. M

    Conditional Formatting based on Department of person received from?

    This macro adds the company info to the email: Join Email with Contact Data - VBOffice
  14. M

    Check for words in subject header before sending email

    then useif instr(strsubject, "what you´re looking for")=0 then...
  15. M

    Check for words in subject header before sending email

    Use strsubject = lcase$(item.subject) to make it case insensitive.
  16. M

    Outlook Macro to show Flagged messages

    I don´t remember if Outlook 2003 already exposed the View object. Check it, please: Open the objet browser (alt+f11), select Explorer left hand and see of it has the property 'CurrentView' available in the window right hand. If so, you can press f1; the help file contains a sample for changing...
  17. M

    Run macro automatically at sending an email

    simply place the name of the macro you wanna call into the shown ItemSend procedure.
  18. M

    Run macro automatically at sending an email

    Add Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) launch the macro here End Sub to the ThisOutlookSession module.
  19. M

    What is the best EntryID format to set on MS Access table

    Yes, the length of the IDs vary. And afaik there´s no limit.
  20. M

    What is the best EntryID format to set on MS Access table

    If you read that data from an Outlook item vua the OOM, you get a string.
Back
Top