ID:               29869
 Updated by:       [EMAIL PROTECTED]
 Reported By:      yves_savard at uqar dot qc dot ca
-Status:           Open
+Status:           Bogus
 Bug Type:         IIS related
 Operating System: Windows 2003
 PHP Version:      4.3.7
 New Comment:

Blame microsoft.


Previous Comments:
------------------------------------------------------------------------

[2004-08-27 15:51:10] yves_savard at uqar dot qc dot ca

Description:
------------
Installed on Windows2003, Excel 2000, with IIS, the application
generate and update Spreadsheet.

It creates and opens a Spreadsheet on the client computer, this allow
him to save the Spreadsheet on his computer.

It works on a wide variety of systes, Windows 95, Windows 98, WIndows
XP and Excel 97, Excel 2000, but it doesn't work on client system where
there is something named 2003 like Windows 2003 or Excel 2003.


Reproduce code:
---------------
$exapp = new COM("Excel.application") or Die ("Did not connect");
$file = $path_to_template."\Template_results.xls";
$wkb = $exapp->Workbooks->open($file);
$sheets = $wkb->Worksheets(2); #Select the sheet 
$cell = $sheets->Cells(1,1) ;
$cell->activate; #Activate the cell 
$cell->value = "Hi";
$wkb->SaveAs($file_name); # saves sheet as $file_name
$exapp->Quit();
unset($exapp);


Actual result:
--------------
The spreadsheet is generated and save on the server but is not open on
the client system, which is very important because it's the only way
for the application to transfer the spreadsheet from the server to the
client system.


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=29869&edit=1

Reply via email to