|
Posted by Tim Roberts on 11/01/06 06:38
"kirke" <hinkyeol@gmail.com> wrote:
>
>Hi, I want to load excel.
>However, this simple code doesn't work. When I open this page, there's
>nothign happen, not even 'unable to initiate excel" or othere error
>message.
>I have excel in server. Do you know why it doesn't work? Should I make
>some special setting?
If that's all there is, then it's probably working fine. Instantiating
Excel as a COM object does not automatically make it visible. You might
try:
$ex = new COM("excel.application");
$ex->Visible = 1;
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
Navigation:
[Reply to this message]
|