Code: Select all
;OpenLibrary(#PB_Any,"user32.dll")
StrToConvert.s = "String"
Procedure.s StrToHex(Str.s)
StrInHex.s = ""
For i = 1 To Len(Str)
StrInHex = StrInHex + Hex(Asc(Mid(Str, i,1)))+" "
Next
ProcedureReturn StrInHex
EndProcedure
Debug StrToHex(StrToConvert)
i would like to see if it does it with others too...
anyone ever tried contacting AV for false alarm?