Outlook 2000 Private DistList

  • Thread starter Thread starter Michael Tissington
  • Start date Start date
M

Michael Tissington

What property do I need to set to create a Private Dist List in Outlook
2000?

Thanks.
 
Hmm, I set Sensitivity to olPrivate saved the item, opened it and the
Private box was NOT checked.
 
Works fine here. I don't have 2000 handy at this moment. Here's a code
snippet:

Sub CreatePrivateDL()
Dim objOL As Outlook.Application
Set objOL = CreateObject("Outlook.Application")
Set objDL = objOL.CreateItem(olDistributionListItem)
objDL.Sensitivity = olPrivate
objDL.Save
objDL.Display
End Sub

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Thanks, not sure what I was doing when I checked before but now its working
correctly..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top