「Ruby入門」RubyはIEの中でダイアログボックスを開けるプログラム

rubyコード:
require “win32ole"

def ieInputBox( msg, default )
ie = WIN32OLE.new(“InternetExplorer.Application");
ie.visible = false
sleep 0.01 while (ie.busy)

script = ie.Document.Script;
result = script.prompt(msg,default);
ie.quit

result
end

result = ieInputBox( “名前を入力してください",
“Dave Bowman")

if result
puts result
else
puts “User pressed Cancel"
end

Development

Posted by arkgame