Hi all,
does anyone have any suggestions as to the steps
involved in creating a DL using VB.Net.
I have some Outlook automation experience
but I'm not sure what the objects are that I should
be creating. There is a distribution list item object,
but no dsitribution list object to contain the items!
Here's what I have so far:
Dim oApp As outlook.Application = New outlook.Application
Dim oNS As outlook.NameSpace = oApp.GetNamespace("MAPI")
oNS.Logon("Outlook", Missing.Value, False, True)
Dim oDistItem As outlook.DistListItem =
oApp.CreateItem(outlook.OlItemType.olDistributionListItem)
Any help would be greatly appreciated.
Many thanks,
Jason.
|