Re: writing to ms excel with jexcel [heur SPAMTRAP]

2008-05-11 Thread Paul Hastings
On Sun, 11 May 2008 10:13:09 -0400 (EDT), Richard White [EMAIL PROTECTED] wrote: kind enough to provide me with a translation of the java instructions into coldfusion please :) cfscript outFile = createObject(java, java.io.File).init(e:\temp\excel\test.xls);

Re: writing to ms excel with jexcel [heur SPAMTRAP]

2008-05-11 Thread Richard White
thanks very much paul, it works perfectly :) thanks again richard kind enough to provide me with a translation of the java instructions into coldfusion please :) cfscript outFile = createObject(java, java.io.File).init(e:\temp\excel\test.xls);

Re: writing to ms excel with jexcel [heur SPAMTRAP]

2008-05-11 Thread Richard White
hi paul, thanks again for this just one more thing then i have everything i need :) there are sections in the documentation that allows for number formatting and date formatting such as: WritableCellFormat integerFormat = new WritableCellFormat (NumberFormats.INTEGER); Number number2 = new

Re: writing to ms excel with jexcel [heur SPAMTRAP]

2008-05-11 Thread C S
therefore how would you translate this formatting stated above cfscript outFile = createObject(java, java.io.File).init( e:\temp\excel\test.xls ); workBook=createObject(java,jxl.Workbook).createWorkbook(outFile); labelObj=createObject(java,jxl.write.Label);

Re: writing to ms excel with jexcel [heur SPAMTRAP]

2008-05-11 Thread Richard White
excellent, thanks very much :) works fine!!! therefore how would you translate this formatting stated above cfscript outFile = createObject(java, java.io.File).init( e:\temp\excel\test.xls ); workBook=createObject(java,jxl.Workbook).createWorkbook(outFile);