M
Michael Steffen
Hi,
I'm trying to programtically create a New Contact Item using
Dim WithEvents m_olOutlook As Outlook.Application
Dim WithEvents m_olNamespace As Outlook.NameSpace
m_olOutlook = CType(application, Outlook.Application)
m_olNamespace = m_olOutlook.Session
m_olContactItem = m_olOutlook.CreateItem((olItemType.olContactItem))
This creates a ContactItem in the DefaultFolder and it works fine.
But now, I would like to select a personal folder using the PickFolder
dialog and create the
ContactItem in folder selected.
Can anyone give an example of how this works...
Thanks..
Michael
I'm trying to programtically create a New Contact Item using
Dim WithEvents m_olOutlook As Outlook.Application
Dim WithEvents m_olNamespace As Outlook.NameSpace
m_olOutlook = CType(application, Outlook.Application)
m_olNamespace = m_olOutlook.Session
m_olContactItem = m_olOutlook.CreateItem((olItemType.olContactItem))
This creates a ContactItem in the DefaultFolder and it works fine.
But now, I would like to select a personal folder using the PickFolder
dialog and create the
ContactItem in folder selected.
Can anyone give an example of how this works...
Thanks..
Michael