Reputation: 448
I have Office 2013 and RAD Studio XE3 installed. When trying to import the Excel, Word, and Outlook type libraries using the Delphi Wizard the type libaries are no longer listed. How can I create the type libraries?
Upvotes: 1
Views: 3096
Reputation: 612794
You can use the import units that ship with Delphi. They work perfectly well with Office 2013. Obviously if you are using interfaces introduced in Office 2013 then they will be missing. But there's no indication that is the case.
These import units are installed in OCX\Servers
.
Because the Office COM servers run out-of-proc, there are no issues with mixing 32 and 64 bit code.
Upvotes: 1