The following example uses the InternetExplorer object from the Microsoft Internet Controls Object Library to load an XML file.
local SHDocVw.InternetExplorer IExplorer; {Create a new instance of Internet Explorer.} IExplorer = new SHDocVw.InternetExplorer(); {Make Internet Explorer visible.} IExplorer.Visible = true; {Load an XML file in browser.} IExplorer.Navigate("C:\RESM\RESM.XML"); {Clear variable.} clear IExplorer;