Hi, I still don't understand which functions do I need in order to implement all these set of IE functions: $oIE = _IECreate("C:\atp.html", 1, 0)
Local $oTable = _IETableGetCollection($oIE, 0)
Local $aTableData = _IETableWriteToArray($oTable, True)
$iIndex = _ArraySearch($aTableData, $strField, 0, 0, 0, 0, 1, 0)
$strValue = $aTableData[$iIndex][1] When I'm trying to open an exist html on "C:" like this: _FFStart("C:atp.html", "default", 1, False, "127.0.0.1", 4242) I get this error: _FFStart ==> Invalid data type: (URL) $sURL: http://C:atp.html How can I make it works? why there is "http://" Thanks