CDOEXM, COM interface constants for VB.Net / VBScript

CDOEXM - interface constants

     This page contains simple VBA include for the CDOEXM COM library.

library parameters

File NameProgram Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib\cdoexm.tlb
Guid{25150F00-5734-11D2-A593-00C04F990D8A}
Enums6

CDOEXMRestrictedAddressType

enum, 2 members.
Public Enum CDOEXMRestrictedAddressType

  'Accept mail only from listed addresses
  cdoexmAccept = 0  '&H0

  'Reject mail from listed addresses
  cdoexmReject = 1  '&H1
End Enum

CDOEXMDeliverAndRedirect

enum, 2 members.
Public Enum CDOEXMDeliverAndRedirect

  'If ForwardTo address is specified, deliver mail only to ForwardTo address
  cdoexmRecipientOrForward = 0  '&H0

  'If ForwardTo address is specified, deliver mail to recipient and ForwardTo address
  cdoexmDeliverToBoth = 1  '&H1
End Enum

CDOEXMServerType

enum, 2 members.
Public Enum CDOEXMServerType

  'Commands can be executed on this server
  cdoexmBackEnd = 0  '&H0

  'This server relays all commands to a back-end server for execution
  cdoexmFrontEnd = 1  '&H1
End Enum

CDOEXMFolderTreeType

enum, 3 members.
Public Enum CDOEXMFolderTreeType

  'General purpose folder tree
  cdoexmGeneralPurpose = 0  '&H0

  'Folder tree is accessible to MAPI clients
  cdoexmMAPI = 1  '&H1

  'Folder tree is accessible only to NNTP clients
  cdoexmNNTPOnly = 2  '&H2
End Enum

CDOEXMStoreDBStatus

enum, 4 members.
Public Enum CDOEXMStoreDBStatus

  'The database is mounted and running
  cdoexmOnline = 0  '&H0

  'The database is offline
  cdoexmOffline = 1  '&H1

  'The database is being mounted
  cdoexmMounting = 2  '&H2

  'The database is being dismounted
  cdoexmDismounting = 3  '&H3
End Enum

CDOEXMInterfaces

module, 10 members.
  'Interfaces supported by Microsoft CDO for Exchange Management
Public Enum CDOEXMInterfaces
  cdoexmIMailRecipient = IMailRecipient 
  cdoexmIMailboxStore = IMailboxStore 
  cdoexmIDistributionList = IDistributionList 
  cdoexmIExchangeServer = IExchangeServer 
  cdoexmIFolderTree = IFolderTree 
  cdoexmIPublicStoreDB = IPublicStoreDB 
  cdoexmIMailboxStoreDB = IMailboxStoreDB 
  cdoexmIStorageGroup = IStorageGroup 
  cdoexmIFolderAdmin = IFolderAdmin 
  cdoexmIADs = IADs 
End Enum
WUtils.com