| REM **********************************************************
REM WScript.Network の取得
REM **********************************************************
Function GetWshNetwork( )
if not IsObject( WshNetwork ) then
Call GetObj( "WshNetwork", "WScript.Network" )
end if
End Function
REM **********************************************************
REM ディクショナリオブジェクトの取得
REM **********************************************************
Function GetDic( )
if not IsObject( Dic ) then
Call GetObj( "Dic", "Scripting.Dictionary" )
end if
End Function
REM **********************************************************
REM Shell オブジェクトの取得
REM **********************************************************
Function GetShell( )
if not IsObject( Shell ) then
Call GetObj( "Shell", "Shell.Application" )
end if
End Function
| |