Power PDF Connector SDK
|
Create a new connector with Microsoft Visual Studio 2015 following these steps:
ProgId
must be the name of the DLL file (without the path and the extension) followed by the '.Connector' literal, for example: "FTPConnector.Connector" "SharePoint.Connector".ProgID
field on the first page of the new class wizard, then click Finish.Add->
Implement
Interface
. DMSConnector.tlb
file. Go to the project directory if you copied the file there.After that, implementing the real functionality of connectors can take place in the following order:
Open
From
.../Save
To
... items available on the UI. To do this, use the following functions: You can also create a new connector by modifying the FTP Connector project included in the SDK package/by performing the following steps:
CLSID
and ProgId
of the projects.GUID
with the help of Microsoft Visual Studio, and replace the current GUID
in the connector.cpp
and
.rgs files with it.
.rgs file, update the ProgId
. The sample projects automatically register themselves both for COM and as a connector if you run regsvr32.exe
with the compiled DLL.After modifying the CLSID
, continue modifying the connector by following the same order as you would with a completely new one.