Anyone knows how to develop an add-in for PowerDesigner? I was reading the document of PowerDesigner about how to create an ActiveX Add-in, it says "The ActiveX must implement a specific interface called IPDAddIn to become a PowerDesigner add-in.". But I don't know where the interface IPDAddIn is, and how to implement it ? Here is the online document
1
There are 1 best solutions below
Related Questions in ADD-IN
- Office add-in for save location
- Using Registry to install Excel AddIn
- Excel COM Add-in not loaded after using Visual studio performance profiler
- Prevent Excel from saving UDF path to formula cells
- Way to capture double click to open file?
- Debugging class library - Target App "out of memory"
- Create Ribbon for OneNote 2013 32bit and 64bit
- Store a Workbook within an xlam file
- Event: Before Outlook close
- How to add manually written extension to Internet Explorer 11?
- Outlook Ribbon XML - Only one instance for all inspectors
- Get list of active connections from SSMS addin
- How can I find the location of DLLs included as resources in an outlook add-in for use with DllImport
- Creating a custom Add-in for Excel 2016 and it is not available from the My Add-In menu
- How to create an addin with a toolbar in it
Related Questions in POWERDESIGNER
- How can the application (PdCommon.Application) be closed in C#?
- Logical Data Model from XMI file
- How to add the diagram code to the table name in the SQL generation in Powerdesigner?
- how to show attribute name and datatype on entity properties power desinger
- PowerDesigner addin develop
- sql server script generated by PowerDesigner
- Powerdesigner VBA - how to switch active model
- Generate schema name on column domains
- Class Diagram in PowerDesigner 15 and C# 3.0 Properties
- Sybase Powerdesigner - how to automatically format naming of PK and FK?
- differance between ER Diagram and Entiy Assication Diagram
- Why shortcut to a decision is not supported in powerdesigner 15.x UML activity diagrams?
- Advantage Database ERD, from existing database.
- How to get a table's all references in powerdesigner?
- SQL Collation mismatching issue
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I have this old example, which could give some ideas, even if not everything it up-to-date.
with the corresponding part in the class declaration:
And the corresponding code to declare the add-in in PowerDesigner. If the
Filevalue is present, PowerDesigner could call DllRegisterServer on it, if the component is not yet registered.