|
Thread: <?>
-
Nov 24th, 2000, 07:08 AM
#1
Thread Starter
_______
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
-
Nov 24th, 2000, 10:30 AM
#2
Fanatic Member
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]
-
Nov 24th, 2000, 11:56 AM
#3
Thread Starter
_______
<?>
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|