Results 1 to 3 of 3

Thread: <?>

  1. #1

    Thread Starter
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946
    Using the outlook model, does anyone know the syntax for "Tell me when message has been read!"

    Example Code:
    Code:
    With objOutlookMsg
        .To = Rst!email
        .Subject = mySubject
        .Body = "To All Parties Concerned:" & vbNewLine & vbNewLine
        .Importance = olImportanceHigh
        Set objOutlookAttach = .Attachments.Add(strAttachments)
    '***********************************************************
    'what would go here to use that feature
        .****Tell Me When Message Read *****    
    '***********************************************************    
        .Send
        End With
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  2. #2
    Fanatic Member crispin's Avatar
    Join Date
    Aug 2000
    Location
    2 clicks west of a Quirkafleeg...Cornwall, England
    Posts
    754
    MSDN reckons that there is a Read Event that is raised by an item, i.e. a mail message when it is read.

    Read Event Example

    This VBScript example uses the Read event to increment a counter that tracks how often an item is read.
    Code:
    Sub Item_Read()
        Set myProperty = Item.UserProperties("ReadCount")
        myProperty.Value = myProperty.Value + 1
        Item.Save
    End Sub
    Im assuming that if this is exposed to VBScript then VB shouldn't have a problem with it.

    hope this helps
    Crispin
    VB6 ENT SP5
    VB.NET
    W2K ADV SVR SP3
    WWW.BLOCKSOFT.CO.UK

    [Microsoft Basic: 1976-2001, RIP]

  3. #3

    Thread Starter
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    Crispin:
    The truth of the matter is I have **** for brains today, well, especially today, but probably most days.

    All I needed was

    .ReadReceiptRequired = True

    All I had to do was press . and the available properties are there but NO. Not Me...dumb dumb...there are days when either my real self takes over or my real self disappears and I'm not sure which is the truth of the matter.

    Your solution seems to apply to the reading of email and not
    the receipt of mail being read on the other end. Thanks for the effort.

    Later


    Getting married later today...wonder if that has anything to do with my loss of senses or ...


    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width