IsConflict Property

Microsoft Outlook Visual Basic

expression.IsConflict

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

If True, the specified item is in conflict.

Example

The following Microsoft Visual Basic/Visual Basic for Applications (VBA) example creates a new mail item and attempts to send it. If the IsConflict property returns True, the item will not be sent.

Sub NewMail()
'Creates and tries to send a new e-mail message.

    Dim olApp As Outlook.Application
    Dim objNewMail As Outlook.MailItem

    Set olApp = New Outlook.Application
    Set objNewMail = olApp.CreateItem(olMailItem)
    objNewMail.Body = "This e-mail message was created automatically on " & Now
    objNewMail.To = "Jeff Smith"

    If objNewMail.IsConflict = False Then
        objNewMail.Send
    Else
        MsgBox "Conflict: Cannot send mail item."
    End If
    Set olApp = Nothing
    Set objNewMail = Nothing
End Sub