View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Todd Huttenstine[_2_] Todd Huttenstine[_2_] is offline
external usenet poster
 
Posts: 237
Default Bloodhound.ExcelMacro

Well I cant because its the one installed on my company
computer. Is there a code I can write to trick Norton to
think its not a virus, like maybe at run time create a
code that modifys the code in such a way, it is not
detected and then reverts back to the way it needs to be?


-----Original Message-----
Bloodhound is not a virus that it detects, it's the

Norton detection engine
that detects virus like activity. In your Norton

settings turn down the
blood hound sensitivity.

Jesse


"Todd Huttenstine"

wrote in message
...
Hey guys,

I am using the following code:
The code simply exports the VBA code and module name of

a
specified module to a text file called code.txt and then
saves it in the directory of the source workbook. It

then
imports that code and module name into another specified
workbook.

Dim FName As String
With Workbooks("VBA Code Examples.xls")
FName = .Path & "\code.txt"
.VBProject.VBComponents("Module2").Export FName
End With
Workbooks("book2").VBProject.VBComponents.Import FName

Nortan Anti virus is detecting this as the
Bloodhound.ExcelMacro virus and will not allow me to

save
the file. How do I work around this?

Thanx

Todd Huttenstine



.