11-26-2007 11:28 PM
11-28-2007 08:57 AM
11-28-2007 10:24 PM
11-29-2007 02:13 PM
11-29-2007 02:26 PM
If you look in the source code for the simple C# UI, you'll find the following line:
axSequenceFileViewMgr.ConnectCommand(axEntryPoint1Button,
CommandKinds.CommandKind_ExecutionEntryPoints_Set, 0, CommandConnectionOptions.CommandConnection_NoOptions);This is what connects the Test UUTs command to the button.
If you want execute the Test UUTs command yourself, you could call:
axSequenceFileViewMgr.GetCommand(
CommandKinds.CommandKind_ExecutionEntryPoints_Set, 0).Execute();This runs the first process model entry point, which by convention is Test UUTs.
Note that this call does nothing if the first process model entry is not currently available or not applicable (in this case the button connected to this same command will be dimmed).