louislietaer
I Know that, I just want:
1- Check if Excel Installed on current machine.
2- if not, Check if OpenOffice Calc installed.
3- deal with OpenOffice Calc as code attached in my first post here.
Main Topics
Browse All TopicsHello,
My Application supposed to Move a Grid to an Excel sheet. everything works fine with me as for Microsoft Excel. But now I have some customers they don't use Microsoft Excel and they are using OpenOffice Calc instead.
I don't know how to deal with OpenOffice. Actually it is an important option in my application which is moving a Grid Data to an Excel Sheet.
kindly find below my current code for Microsoft Excel, I need it to be converted to work with OpenOffice Calc.
another point, I want to make my Application check if the customer PC has Microsoft Excel or OpenOffice Calc.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
uses
ComObj, ActiveX; // here an other example uses clause what missing in the first one
function IsObjectActive(ClassName: string): Boolean;
var
ClassID: TCLSID;
Unknown: IUnknown;
begin
try
ClassID := ProgIDToClassID(ClassName)
Result := GetActiveObject(ClassID, nil, Unknown) = S_OK;
except
// raise;
Result := False;
end;
end;
procedure TForm1.Button1Click(Sender
begin
if IsObjectActive('Word.Appli
if IsObjectActive('Excel.Appl
if IsObjectActive('Outlook.Ap
if IsObjectActive('Access.App
if IsObjectActive('Powerpoint
end;
Business Accounts
Answer for Membership
by: louislietaerPosted on 2009-04-29 at 03:03:20ID: 24258713
As Excel is not install on your client PC you will not be able to run ole on excel.
.org/3.0.0 /sdk.html
here is a download link for openoffice sdk. Install it there are some delphi examples.
http://download.openoffice