Skip to main content
1-Visitor
November 30, 2021
Solved

Auxiliary Application with ProE

  • November 30, 2021
  • 1 reply
  • 1971 views

Hi guys,

 

I have a DLL Application that is launched when Creo starts, when I go to auxiliary application menu, and I stop it, it stops. No problem until here. But when I try to start it now, it crashes Creo.

 

I have no idea why, nothing in the trail and traceback.

 

Can you help me figure it out please? Thank you

Best answer by FabianWolf

If you're using Visual Studio as IDE you can simply attach the debugger to the xtop.exe process just before you restart your application and add a break point at the beginning of your user_initialize() function. When starting the app, the debugger will jump into it and you can check step by step which areas of your code get executed until the crash occurs.

1 reply

14-Alexandrite
November 30, 2021

If you're using Visual Studio as IDE you can simply attach the debugger to the xtop.exe process just before you restart your application and add a break point at the beginning of your user_initialize() function. When starting the app, the debugger will jump into it and you can check step by step which areas of your code get executed until the crash occurs.

1-Visitor
November 30, 2021

Thank you! It helps me ðŸ™‚