siddhu2310
Mechanical
- May 25, 2023
- 7
Hi everyone,
I’ve developed a custom toolbar for CATIA using VB.NET, and I’m currently able to run the executable directly. However, I’d like to integrate it into CATIA as an Add-in, so users can launch the tool directly from within CATIA.
I’ve considered a few approaches but encountered some challenges:
Thanks in advance for your help!
I’ve developed a custom toolbar for CATIA using VB.NET, and I’m currently able to run the executable directly. However, I’d like to integrate it into CATIA as an Add-in, so users can launch the tool directly from within CATIA.
I’ve considered a few approaches but encountered some challenges:
- Using a Macro to Launch the Executable:
I can create a macro (CATVBA) to launch my MyApp.exe and then add the macro as a command in a custom toolbar. However, this requires distributing the macro file to each user's system manually, which adds extra steps for users. - Setting Up a Toolbar Icon and Sharing CATSettings:
Another idea is to set up the toolbar with the necessary icons and commands on my system, then share my CATSettings and the macro file with users. However, this could overwrite or collide with users' custom CATSettings, which is not ideal. - Adding the Toolbar as a Proper Add-in:
Ideally, I’d like to implement the toolbar as a proper Add-in that integrates seamlessly with CATIA, avoiding the manual steps and potential conflicts mentioned above.
Thanks in advance for your help!