11件ヒット
[1-11件を表示]
(0.054秒)
ライブラリ
- win32ole (11)
検索結果
-
WIN32OLE
_ EVENT # handler=(obj) -> () (25.0) -
イベント処理を実行するオブジェクトを登録します。
...j イベントに対応するメソッドを持つオブジェクト。イベント受信を
解除するにはnilを指定します。
class IeHandler
def initialize
@completed = false
end
attr_reader :completed
def onDocumentComplete(disp, uri)
disp.docume......WIN32OLE.new('InternetExplorer.Application.1')
event = WIN32OLE_EVENT.new(ie, 'DWebBrowserEvents2')
event.handler = IeHandler.new
ie.Navigate2 'http://www.ruby-lang.org/ja/'
loop do
break if event.handler.completed
WIN32OLE_EVENT.message_loop
end
ie.Quit
WIN32OLE_EVENT#on_event...