I can't show SVG content using _IEWriteDocHTML!
If i save the same SVG code into a file and navigate to the file, it works.
Global $oIE = _IECreateEmbedded()
GUICreate('TEXT?',180,99,5,5, BitOR(0x00C00000, 0x00080000))
GUICtrlCreateObj($oIE,4,4,172,64)
_IENavigate($oIE, "about:blank")
_I...