Sha256: fff1b5811513d073c64a961c80cba49646fe77e815fac43c0194983080456609
Contents?: true
Size: 772 Bytes
Versions: 38
Compression:
Stored size: 772 Bytes
Contents
#!/usr/bin/ruby -w # -*- coding: utf-8 -*- ############################################################################### # # Example of creating a WriteExcel that is larger than the # default 7MB limit. # # It is exactly that same as any other WriteExcel program except # that is requires that the OLE::Storage module is installed. # # reverse('©'), Jan 2007, John McNamara, jmcnamara@cpan.org # # original written in Perl by John McNamara # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp # require 'writeexcel' workbook = WriteExcel.new('bigfile.xls') worksheet = workbook.add_worksheet worksheet.set_column(0, 50, 18) 0.upto(50) do |col| 0.upto(6000) do |row| worksheet.write(row, col, "Row: #{row} Col: #{col}") end end workbook.close
Version data entries
38 entries across 38 versions & 3 rubygems