| REM ******************************************************
REM IE の BODY 内に HTML を読み込む
REM baseFunction が必要です
REM ******************************************************
Function LoadIEDocument( strPath )
Call GetObj( "IEDocument", "InternetExplorer.Application" )
IEDocument.Navigate( "about:blank" )
IEDocument.document.getElementsByTagName("BODY")(0).innerHTML = _
GetTextFile( strPath )
End Function
| |