Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - guycolstyle

Pages: [1]
1
Thanks Guys,
there is definitely a RunState property on the version 7.
I'm still running te version 6.5, I gonna update it

2
Thanks for the reply.
the RunState property is only available from EA. My question is how to read the run state using the AI. after the first reply, I tried this:
IEnumerator props = element.Properties.GetEnumerator();
while (props.MoveNext())
{
  Property prop = (Property)props.Current;
  Console.WriteLine(element.Name+" : "+prop.Name);
}
and I wasn't able to figure out where the runstate property is. Any other suggestions?

3
Good Morning All,
I got a serious problem guys, and I definitely need your help. I did defined some Object Instances in my EA project and I set the run state. Now I need to read this run-state. could somebody tell me how I can handle that

Pages: [1]