R
rajesh
McAfee virus scanner flags even rudimentary Outlook code as a virus and many Outlook based apps are being removed by customers at their sites.
I investigated and found the following in one application:
set Application = CreateObject("Outlook.Application") <- Worm
set Namespace = Application.GetNamespace("MAPI") <- flagged as worm because of call to GetNamespace
Namespace.Logon
Set oItem = Application.CreateItem(0) <- Flagged as worm because of call to CreateItem
I tried CallByName but that did not work. Also, I tried to use IDispatch but it is called a "protected" function and would not let me call from the VB IDE.
I have already spent 1 full day trying to find out who in McAfee is responsible and they were not responsive.
Did MS put in flags for virus checkers to use ? Is there a solution ?
I investigated and found the following in one application:
set Application = CreateObject("Outlook.Application") <- Worm
set Namespace = Application.GetNamespace("MAPI") <- flagged as worm because of call to GetNamespace
Namespace.Logon
Set oItem = Application.CreateItem(0) <- Flagged as worm because of call to CreateItem
I tried CallByName but that did not work. Also, I tried to use IDispatch but it is called a "protected" function and would not let me call from the VB IDE.
I have already spent 1 full day trying to find out who in McAfee is responsible and they were not responsive.
Did MS put in flags for virus checkers to use ? Is there a solution ?