Check your Outlook Inbox for new messages . . .
Checks you Microsoft Outlook Inbox for new Mail Items.
AI
Riepilogo AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Codice sorgente
Dim objOutlook As Outlook.Application
Dim objMapiName As Outlook.NameSpace
Dim intCountUnRead As Integer
Private Sub Check_Mail_Click()
Set objOutlook = New Outlook.Application
Set objMapiName = objOutlook.GetNamespace("MAPI")
For I = 1 To objMapiName.GetDefaultFolder(olFolderInbox).UnReadItemCount
intCountUnRead = intCountUnRead + 1
Next
MsgBox "You have " & intCountUnRead & " new messages in your Inbox . .
", vbInformation + vbOKOnly, "New Messages . . ."
intCountUnRead = 0
Set objMapiName = Nothing
Set objOutlook = Nothing
End Sub
Commenti originali (3)
Recuperato da Wayback Machine