문제

I've made a rule in Outlook VB

Sub Test(Item As Outlook.MailItem)
  Dim message
  message = Split(Item.Body, vbCrLf)
  ...
End Sub

However, anytime it runs I get this message:

Warning message

I'm fairly certain this is coming from Item.Body, and I can silence this alert for up to 10 minutes, but I would rather just turn it off entirely.

Is this possible? If not is there a way I can extend the timer past 10 minutes?

This is relating to Outlook 2003 on Windows XP.

도움이 되었습니까?

해결책

You can turn this off by creating\setting the value of CheckAdminSettingsto 1 in the Registry Key HKEY_CURRENT_USER\Software\Policies\Microsoft\Security

see MS Article and MS Article

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top