Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
Dim lngMailCount As Long
Const regAppName As String = "OL_MyAppName"
Const regSection As String = "OL_Mail"
Const regKey As String = "OL_MailCount"
lngMailCount = GetSetting(regAppName, regSection, regKey, 0)
SaveSetting regAppName, regSection, regKey, lngMailCount + 1
End Sub
Sub GetSendReceiveCount()
Const regAppName As String = "OL_MyAppName"
Const regSection As String = "OL_Mail"
Const regKey As String = "OL_MailCount"
MsgBox "Since 28-Nov-07 you have had " & _
GetSetting(regAppName, regSection, regKey, 0) & _
" send/receives.", vbInformation, "COUNT"
End Sub