[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Excel spreadsheet

Paatsch, Bernd

2/7/2006 1:36:00 AM

Hello,

Is it possible to access Excel spreadsheets through ruby?
If so is there somewhere a code example I can have a look at?

Thanks,
Bernd
5 Answers

John Maclean

2/7/2006 2:03:00 AM

0

I've seen something in the source code...
/usr/share/doc/ruby-docs-1.8.4/ext/win32ole/sample/

require 'win32ole'

#application = WIN32OLE.new('Excel.Application.5')
application = WIN32OLE.new('Excel.Application')

application.visible = TRUE
workbook = application.Workbooks.Add();
worksheet = workbook.Worksheets(1);
worksheet.Range("A1:D1").value = ["North","South","East","West"];
worksheet.Range("A2:B2").value = [5.2, 10];
worksheet.Range("C2").value = 8;
worksheet.Range("D2").value = 20;

range = worksheet.Range("A1:D2");
range.Select
chart = workbook.Charts.Add;

workbook.saved = TRUE;

application.ActiveWorkbook.Close(0);
application.Quit();

On Tue, 7 Feb 2006 10:36:00
+0900 "Paatsch, Bernd" <BPaatsch@activevoice.com> wrote:

> Hello,
>
> Is it possible to access Excel spreadsheets through ruby?
> If so is there somewhere a code example I can have a look at?
>
> Thanks,
> Bernd


--
John Maclean
MSc (DIC)
07739 171 531



David Vallner

2/7/2006 2:15:00 AM

0

Dna Utorok 07 Február 2006 02:36 Paatsch, Bernd napísal:
> Hello,
>
> Is it possible to access Excel spreadsheets through ruby?
> If so is there somewhere a code example I can have a look at?
>
> Thanks,
> Bernd

If the machine in question is a Windows box with Excel already installed, your
best bet is probably using Win32OLE and accessing an Excel interface via COM.
Best look at Win32OLE, and Windows / Excel automation docs.

http://www.rubygarden.org/ruby?Scri... looks like good introductory
sample code too.

If not, I can only recall a writer package that worked with the binary format,
and I had mixed success getting it run on and off Cygwin. There might be
something out there that will let you read the zipped XML format out there,
but I can't recall anything off the top of my head, nor see something that
flicks a lightbulb on in the first screen of googlage results.

You might feel particularly adventurous and try compiling the POI ruby
bindings, if the thought of working with with GCC compiled Java doesn't scare
you. (It does indeed scare me...)

That said, the topic is also fairly recurrent on the list in my opinion, so
give searching the ML archives a try too.

David Vallner


Gene Tani

2/7/2006 4:35:00 AM

0


Paatsch, Bernd wrote:
> Hello,
>
> Is it possible to access Excel spreadsheets through ruby?
> If so is there somewhere a code example I can have a look at?
>
> Thanks,
> Bernd

I once counted 5 ways to get at Excel data: CSV, OLE, XML, ADO and i
can't remember what the other one was.

Jon Egil Strand

2/7/2006 8:01:00 AM

0

Jeff Schwab

2/7/2006 1:48:00 PM

0

Paatsch, Bernd wrote:

> Is it possible to access Excel spreadsheets through ruby?
> If so is there somewhere a code example I can have a look at?

In case you missed this:

http://groups.google.com/group/comp.lang.ruby/browse_frm/thread/b1ab827bae767f27/5e002e8734db1656?lnk=st&q=ruby+parseexcel&rnum=1#5e002e...