09-08-2011 10:42 PM
Solved! Go to Solution.
09-09-2011 09:38 AM
Take a look at the ReportOptions callback in one of the NI stock process models. This is an example how to call external dialogs. Instead of configuration entry point, you could instead trigger it via a menu option or a toolbar button. There's information on how to do this on the web and in the TestStand manual.
As for the dialog itself, you'll have to find a way to hook into TestStand's breakpoint mechanisms. Hopefully you won't have to do something as ridiculous as track them on your own, but I don't know offhand of an easy way to retreive all breakpoints in existance.
09-09-2011 11:06 AM
If you are writing a UI using the TestStand ApplicationMgr control you can use CommandKind_DisplayBreakpointsAndWatchExpressions to display this dialog. See the API help for more information.
If you are not using the ApplicationMgr control you can call the Engine API Engine.DisplayEditBreakAndWatchDialog() directly.
Hope this helps,
-Doug
09-13-2011 10:17 PM
Your answer is very helphul for me, thank you very much.