|
Posted by kirke on 11/02/06 05:19
I forgot one thing.
If I write code like following :
print "before";
$ex = new COM("excel.application");
print "after" ;
only "before" is printed.
Isn't it bad sign?
kirke wrote:
> aha- i'll try it. Thx.
>
> Tim Roberts wrote:
> > "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]
|