ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Stop Symantec AV from quarantine my VBA (https://www.excelbanter.com/excel-programming/411002-stop-symantec-av-quarantine-my-vba.html)

EagleOne@microsoftdiscussiongroups[_2_]

Stop Symantec AV from quarantine my VBA
 
Excel 2003 up to date

What type of commands in Excel VBA does NAV assume relate to the Bloodhound
Macro Virus.

I assume that it does not like any command that deletes files - but there
may be others.

Can anyone help me strip my Personal.xls of VBA commands which causes NAV to
delete the file?

Any ideas? Plea..........se!

EagleOne


Jim Cone[_2_]

Stop Symantec AV from quarantine my VBA
 
In earlier versions of NAV that I have seen, there is an option to disable/omit scanning of
office apps. Suggest you seriously consider doing that.
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)



"EagleOne@microsoftdiscussiongroups"
wrote in message
What type of commands in Excel VBA does NAV assume relate to the Bloodhound
Macro Virus.
I assume that it does not like any command that deletes files - but there
may be others.
Can anyone help me strip my Personal.xls of VBA commands which causes NAV to
delete the file?
Any ideas? Plea..........se!
EagleOne


Dave Peterson

Stop Symantec AV from quarantine my VBA
 
You have responses at your other post.

EagleOne@microsoftdiscussiongroups wrote:

Excel 2003 up to date

What type of commands in Excel VBA does NAV assume relate to the Bloodhound
Macro Virus.

I assume that it does not like any command that deletes files - but there
may be others.

Can anyone help me strip my Personal.xls of VBA commands which causes NAV to
delete the file?

Any ideas? Plea..........se!

EagleOne


--

Dave Peterson

RB Smissaert

Stop Symantec AV from quarantine my VBA
 
I had this problem with McAfee and it objected to using Microsoft Visual
Basic for Applications Extensibility 5.x.
The answer was to remove that reference, use late binding and also move the
code to a VB6 ActiveX dll and call it from VBA.
So in my VB6 class I have for example:

Public Function ImportCode(oVBCodeMod As Object, _
strFile As String) As Boolean

On Error GoTo ERROROUT

oVBCodeMod.AddFromFile strFile

Sleep 100
DoEvents

ImportCode = True

Exit Function
ERROROUT:

End Function

All very simple and working very well.


RBS

"EagleOne@microsoftdiscussiongroups"
rosoft.com wrote in
message ...
Excel 2003 up to date

What type of commands in Excel VBA does NAV assume relate to the
Bloodhound
Macro Virus.

I assume that it does not like any command that deletes files - but there
may be others.

Can anyone help me strip my Personal.xls of VBA commands which causes NAV
to
delete the file?

Any ideas? Plea..........se!

EagleOne




All times are GMT +1. The time now is 05:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com