Re: ORA 305500 !!! OLE-EXCEL
Date: Wed, 12 May 1999 15:29:53 +0200
Message-ID: <7hbvm7$r86$1_at_news08.btx.dtag.de>
Big return to myself!!!
Microsoft changed the object 'Workbooks'. It's now a property of object 'Excel.Application'.
replace
> wbooks:=ole2.invoke_obj(appl,'Workbooks');
>...
with wbooks:=ole2.get_obj_property(appl,'Workbooks');
look
also:http://technet.oracle.com/support/reports/devtools/content/483090.htm
Mein Name schrieb in Nachricht <7h9bp1$qq4$1_at_news07.btx.dtag.de>...
>i wonder:
>
>declare
> appl ole2.obj_type;
> wbooks ole2.obj_type;
>...
>begin
> appl:=ole2.create_obj('Excel.Application');
> ole2.set_property(appl,'Visible',True);
>-- until to this point it's ok
>-- and now the error
> wbooks:=ole2.invoke_obj(appl,'Workbooks');
>...
>end;
>
>Thanks for help
>
>Michael
>m-muenzner_at_t-online.de
>
>
Received on Wed May 12 1999 - 15:29:53 CEST