Change soft-fail to use the config, rather than env
[rbx.git] / stdlib / ext / win32ole / sample / excel3.rb
blob0f96717063964f3d7c45deee634dda097c33189e
1 require 'win32ole'
3 #application = WIN32OLE.new('Excel.Application.5')
4 application = WIN32OLE.new('Excel.Application')
6 application.visible = TRUE
7 workbook = application.Workbooks.Add();
8 sheet = workbook.Worksheets(1);
9 sheetS = workbook.Worksheets
10 puts "The number of sheets is #{sheetS.count}"
11 puts "Now add 2 sheets after of `#{sheet.name}`"
12 sheetS.add({'count'=>2, 'after'=>sheet})
13 puts "The number of sheets is #{sheetS.count}"