Recent content by sgrosch1

  1. S

    how to debug in OL2010?

    You should be calling into C:\program files\microsoft office\office14\outlook.exe If you're using a 32-bit Outlook it'll be down the "program files (x86)" path instead.
  2. S

    Identify weekend from daily RecurrencePattern

    That's the days selected in the recurrence pattern, not the days that are flagged in the Calendar options for which days the employee works. I found the calendar options up in the registry and can compare that against the mask now.
  3. S

    Identify weekend from daily RecurrencePattern

    I'm parsing a RecurrencePattern object where the recurrence type is daily. If I'm understanding properly, the pattern Interval of 0 means that they only want weekdays. Is that correct? If so, how do I identify which days are weekday? I know in the calendar options page there are...
  4. S

    What's the appointment ribbon called?

    I've created an Outlook 2010 add-in that includes an Outlook Form Region. I only want my region usable if the BusyStatus is set to Out of Office, so my thought was to get a pointer to the ribbon and then add some type of OnChange to the "Show As" drop-down that enabled/disabled my form...
  5. S

    Property pages in Outlook 2010

    The answer here is to use the Backstage by adding a new "Ribbon (XML)" element to the project and then modifying the customUI
  6. S

    Property pages in Outlook 2010

    In my Office 2007 add-ins I'd add a property page like this: Application.OptionsPagesAdd += OptionsPagesAdd; and then add my UserControl to the pages variable passed in. With Outlook 2010 I set a breakpoint in OptionsPagesAdd and when I go to File->Options inside of Outlook that...
Back
Top