Board index » delphi » Excel 11.0 and D7

Excel 11.0 and D7


2005-08-10 09:47:51 PM
delphi237
All,
I've got a reported tool that uses Excel, previously I had no trouble doing
this...
procedure TForm1.Button1Click(Sender: TObject);
var
oXL: _Application;
begin
oXL := CoExcelApplication.Create; // errors out on this line...
now, after Installing Office 2003 (Excel 11.0) it errors out and wants to
send errors to Microsoft...
Is there an easy answer to this one?
The errors that pops has this message "Interface not supported."
 
 

Re:Excel 11.0 and D7

All, it appears to work fine if I simply run the application, but the error
continually occurs when running from the IDE? Any ideas?
"Les Block" <XXXX@XXXXX.COM>writes
Quote
All,

I've got a reported tool that uses Excel, previously I had no trouble
doing
this...

procedure TForm1.Button1Click(Sender: TObject);
var
oXL: _Application;
begin
oXL := CoExcelApplication.Create; // errors out on this line...

now, after Installing Office 2003 (Excel 11.0) it errors out and wants to
send errors to Microsoft...
Is there an easy answer to this one?

The errors that pops has this message "Interface not supported."