hime813 / gcal2excel

Automatically exported from code.google.com/p/gcal2excel
0 stars 0 forks source link

No logs of behavior #7

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
I ran the GUI (by simply clicking on the Gcal2Excel.jar file) but could 
only get empty XLS as results when I press the CREATE button

I do not see any error message on the screen, so I don't know if it 
successfully could connect to my calendar ? Is there a log or 
errors/warnings somewhere ?

Thank you

Original issue reported on code.google.com by xfournier.morel on 6 Jul 2009 at 4:55

GoogleCodeExporter commented 9 years ago
Yes  have the same problem.
Could it be a problem with the JRE version?

Original comment by josha...@gmail.com on 12 Aug 2009 at 9:14

GoogleCodeExporter commented 9 years ago
What JRE version are you using ? what JRE version should be used ?

Thank you

Original comment by xfournier.morel on 12 Aug 2009 at 10:36

GoogleCodeExporter commented 9 years ago
I'm using the lastest version of the JRE/JDK.

I was wondering if we should use a previous version?

Original comment by josha...@gmail.com on 13 Aug 2009 at 7:15

GoogleCodeExporter commented 9 years ago
I've found what the problem is.
To see the error message you must execute the jar file with the command line 
(not
directly by clicking on the jar file) => java -jar GCal2Exel.jar
pb comes from line jxl.write.Formula( 2, (row+2), "SUM(C3:C"+row+")" );
in the converter class.

You are probably running under a non english system.
My windows and excel are french versions, and the SUM function is called SOMME 
in
excel. I modified the code line that sums to : jxl.write.Formula( 2, (row+2),
"SOMME(C3:C"+row+")" ); and it works perfectly well.

Original comment by josha...@gmail.com on 17 Aug 2009 at 9:51

GoogleCodeExporter commented 9 years ago
I have the same problem of empty Excel file. How and where, can I change the 
SUM function in SOMME function 
? (MAC OS 10.6 french Mac Office 2008 french)

Original comment by rauchpat...@gmail.com on 5 Jan 2010 at 10:20

GoogleCodeExporter commented 9 years ago
You have to modify the java code.

Original comment by josha...@gmail.com on 5 Jan 2010 at 12:50