I am trying to modify columns in say a table view of appointments, programtically. Manually, one does this by simply accessing 'define view' under Outlook's View Menu.
Consider the basic COM code:
oOutlook = Createobject("Outlook.Application"
objViews = oOutlook.getnamespace("MAPI"
.GetDefaultFolder(9).Views &&Calendar format
objView = objViews.ADD('MyNewTableCalendarView',0,0)
objView.apply
Voila! ... a new Calendar view in a table format is created in the same (customizeable) format as "Active Appointments" and listed under the 'Current Views' Submenu.
Would any of you OUTLOOK enthusiasts perhaps know of a viable way to CUSTOMIZE VIEW(s) programatically (SANS XML scripting)?
Thanks in advance for any thought.
Philip M. Traynor, DPM
Consider the basic COM code:
oOutlook = Createobject("Outlook.Application"

objViews = oOutlook.getnamespace("MAPI"

objView = objViews.ADD('MyNewTableCalendarView',0,0)
objView.apply
Voila! ... a new Calendar view in a table format is created in the same (customizeable) format as "Active Appointments" and listed under the 'Current Views' Submenu.
Would any of you OUTLOOK enthusiasts perhaps know of a viable way to CUSTOMIZE VIEW(s) programatically (SANS XML scripting)?
Thanks in advance for any thought.
Philip M. Traynor, DPM