Posts: 88
Threads: 33
Joined: Feb 2007
How to add VBS Code to exe for following lines ?
VbsAddCode "Quoted-Printable-Decode" 1
if find(part2 "=3D" 0) != -1
str msg = VbsFunc("QuotedPrintableDecode" part2 "utf-8")
else
msg = part2
Posts: 12,073
Threads: 140
Joined: Dec 2002
str qpd.getmacro("Quoted-Printable-Decode")
VbsAddCode qpd
...
Or
#exe addtextof "Quoted-Printable-Decode"
VbsAddCode "Quoted-Printable-Decode" 1
...