| REM ******************************************************
REM SHIFT キーの状態
REM baseFunction が必要です
REM ******************************************************
Function isShift( )
Call GetObj( "IEDocument", "InternetExplorer.Application" )
IEDocument.Navigate( "about:blank" )
IEDocument.document.getElementsByTagName("BODY")(0).innerHTML = _
"<INPUT id=ret><INPUT id=bt type=button " & _
" onClick='document.getElementById(""ret"").value=window.event.shiftKey'>"
IEDocument.document.getElementById("bt").click
if Ucase(IEDocument.document.getElementById("ret").value) = "TRUE" then
isShift = True
else
isShift = False
end if
IEDocument.Quit
Set IEDocument = Nothing
End Function
| |