- 304 名前:名無しさん@お腹いっぱい。 mailto:sage [2007/08/04(土) 22:32:52 ID:???0]
- >>303
WMIを使ったスリープ //スリープ関数 function Sleep( mSec ) { try { var WMI = GetObject( "winmgmts:{impersonationLevel=impersonate}" ); var events = WMI.ExecNotificationQuery( "select * from __instancecreationevent where targetinstance isa 'Win32_NTLogEvent'" ); events.NextEvent( mSec ); } catch(e) { return null; } }
|

|