04-06-2008 02:13 AM
axSequenceFileViewMgr1.GetCommand(
CommandKinds.CommandKind_TracingEnabled).Execute(false);but its not working, is there is any other way?
thanks
Yaniv
04-07-2008 09:44 AM
That code is roughly equivalent to:
Engine.StationOptions.TracingEnabled = !Engine.StationOptions.TracingEnabled;
Thus it toggles the global tracing flag. Some possible reasons you might not be tracing include:
- tracing was already on, and you just turned it off
- tracing might be off due to a finer grained option. See Execution.TracingDisabled, SequenceContext.Tracing, and the Step Properties >> Run Options >> Sequence Call Trace Setting on sequence call steps.
- Your UI might have been customized in a way that breaks tracing
- James
04-08-2008 01:45 AM
Thank you james for your help
another question how can i change the number of socket in the model option.
right now im change the config ini file named: TestStandModelModelOptions.ini.
its work fine, but i would like to do it through the .net code.
thanks
yaniva
04-09-2008 02:34 PM