Technical Support

{{ post.title }} 글 편집 글 편집 (이전 에디터) Author {{ post.author.name }} Posted on

Version {{ post.target_version }} Product
{{ product.name }}
Tutorial/Manual {{ post.manual_title }} Attached File {{ post.file.upload_filename }}

How to Register ProcessNet Function to Ribbon Control

RecurDyn provides ProcessNet (PNet), so that users can make their own functions.
Users can use c# to automate the repetitive operations or create a new UI.

 

Users also can register the PNet functions to the ribbon control.

 

Please download the below example source code and dll file and test it.

 

Summarized procedure
1) Create RegisterFunction() function.
- when RegisterFunction() is called, the PNet function is registered to Ribbon.
- The PNet function which user created should be included in the dll together.
2) Register Dll from [Customize]- ProcessNet(VSTA)-[Register DLL]
3) After registering Dll, RecurDyn calls RegisterFunction() in the dll automatically when it is launched.
Then, the PNet function is registered from RegisterFunction().
4) Several buttons can be registered together.

 

 

RegisterDll

 


Source code