I created activex control in C#.
I installed my activex control in Intouch Program
and i associated tag to property of activex control
the problem is the tag only can set property but not get property
in Wonderware Intouch Guide document, it explain like 'The property cannot change the tagname's value because the property is non-bindable'
propery in C# is like this
public string Text1
{
get { return textBox1.Text; }
set { textBox1.Text = value; }
}
i tried to make property bindable by using '[bindable(true)], [Browsable(true)] etc..' in C#
but any setting doesn't work..
is it impossible activex control's property bind to Tag in InTouch?