Converts a string to IE(Internet Explorer) capable line
#include <Inet.au3>
_INetExplorerCapable ( $sIEString )
$sIEString | String to be converted |
Success: | the converted string. |
Failure: | an empty string and sets the @error flag to non-zero. |
This converts IE uncapable characters to '%' and their hex value.
#include <Inet.au3>
#include <MsgBoxConstants.au3>
MsgBox($MB_SYSTEMMODAL, "", _INetExplorerCapable(InputBox("", "Enter a string to convert into browser readable text")))