Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » CDO 1.21   (RSS)

Howto: Accept meeting requests with VB6 and CDO 1.21

Here is a sample to accept all meeting requests using CDO 1.21. ' The code below will accept all meeting requests in the users inbox. Private Sub cmdAcceptRecurringMeeting_Click() Dim objSession As mapi.Session Dim ObjMessage As mapi.Message Dim oMessages

My .EDB file grows when I search.

When doing a WebDAV or any other search, you will likely see the .EDB file expands. When performing a search against a mailbox using WebDAV or any other API, you may see the .EDB file grow in size. Don't panic, this is normal. When a search is performed,

HOWTO: VB/CDO 1.21 - Cancel a Recurring Meeting using a single Recurrance

' This code finds an meeting occurance and uses it to cancel the entire meeting series and ' have "Cancelled:" in front of the subject lines on the update messages sent to the recipient(s). ' To use: ' Create a recurring meeting inside the date/time range

CDO 1.21 and Unicode Text (Japanese, Chinese, Korean, etc)

CDO 1.21 and Unicode Text (Japanese, Chinese, Korean, etc) Having issues using CDO 1.21 with multi-byte (unicode) languages such as Japanese, Korean, Chinese? Do you want a way to create an appointment item with Japanese text using CDO 1.21? This is not

Setting MeetingStatus to CdoNonMeeting using CDO will cause the AllDay flag to not be set on an occurance in Outlook.

If you use CDO 1.21 to set the MeetingStatus to CdoNonMeeting for a single occurance of an all day recurring appointment, you will find that the AllDay flag is not set when the appointment is converted to a meeting and accepted by the attendee. Private

Setting timezone options with CDO 1.21.

CDO 1.21 Timezone information is stored in a a property inside of the user's mailbox and is CDO 1.21 specific. It is set any time a CDO 1.21 session sets the time zone and persists for that user until changed. This means it will be used by any subsequent

HOWTO: CDO 1.21/VBS - Get Free/Busy information

'----------------------------------------------------------- ' getfbCDO121.vbs - Get Free/Busy information using CDO1.21 and vbs ' Instructions: ' Save to a file called getfbCDO121.vbs ' Do the TODO: sections ' Run from the command line using: cscript

HOWTO: CDO 1.21/VB Expand a Distribution List

'HOWTO: CDO 1.21/VB Expand a Distribution List ' TODO: Create a new VB Project ' TODO: Set a reference to CDO 1.21 ' TODO: Add a button to the form and paste this code in. ' TODO: Change TODO: sections below. Private Sub Command1_Click() Dim objSession

HOWTO: VB/CDO 1.21 - Delete inbox message attachments over certain size

Here is an example: 'How to read the Inbox messages and delete attachments over a given size using VB and CDO 1.21 ' This example deletes all jpg file attachments over a certain size in an inbox. Const CONST_MAX_JPG_ATTACHMENT = 3000 ' TODO: Change this

HOWTO: Use PS_INTERNET_HEADERS with cdo 1.21 for custom properties

How to use PS_INTERNET_HEADERS with CDO 1.21 for custom properties. 'This example uses PS_INTERNET_HEADERS for setting a custom property const smbx="mymailbox" ' TODO: Change const ssrv="myserver" ' TODO: Change const mycdoInetPset = "8603020000000000C000000000000046"

How to use PS_INTERNET_HEADERS with cdo 1.21 for custom properties.

'This example uses PS_INTERNET_HEADERS for setting a custom property const smbx="mymailbox" ' TODO: Change const ssrv="myserver" ' TODO: Change const mycdoInetPset = "8603020000000000C000000000000046" const myXheader = "X-SPAM" ' TODO: Change to your

HOWTO: VB6/CDO 1.21 - expand a distribution list

Below is a sample: ' TODO: Create a new VB Project ' TODO: Set a reference to CDO 1.21 ' TODO: Add a button to the form and paste this code in. ' TODO: Change TODO: sections below. Private Sub Command1_Click() Dim objSession As MAPI.Session Dim ObjMessage

How to add a holiday to a calendar using VB and CDO 1.21.

' How to add a holiday to a calendar using VB and CDO 1.21. ' ' This example code shows how to add a holiday to a calendar using VB and CDO 1.21. ' Set a reference to CDO 1.21 and do the TODO sections in the code. ' Holidays are All Day Appointments with

Tools for Diagnosing Problems with Messaging Software

There are many tools which are useful for diagnosing problems with Messaging APIs. Attached, you will find a document which outlines several tools which you may find useful. Please note that this there is no endorsement or peference over any one tool
 
Page view tracker