Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DOCS Open 4 vs Office 2007

Status
Not open for further replies.

FusionAdm

Programmer
Oct 15, 2008
3
0
0
SE
Does anyone have an Excel macro to integrate Excel 2007 with DOCS Open 4?
 
I don't have an example from Excel, only Delphi, but you basically have to create an instance of the DocsOpen OLE class and then you can do whatever operation you want. In Delphi this is how we got started:

Docs := CreateOleObject('PCDocs.Application');
Prof := Docs.GetDocProfile(OleVariant(DocNumber));
LaunchDocument(Prof);


Paul Rigby
VBA, C#, Delphi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top