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 - lhyabcd

Pages: [1]
1
General Board / Re: BAD: [  ] Unique - totally defective
« on: February 12, 2008, 10:09:50 pm »
Hoping it be fixed ASAP.

2
General Board / Re: Removing Foreign Key
« on: February 12, 2008, 10:00:13 pm »
The bug is still existing in ver818.
I rediscover it ,again.
sadly...

3
Automation Interface, Add-Ins and Tools / Re: AddNew return Error
« on: March 10, 2008, 05:14:11 pm »
Please try the following code:

EA.ConnectorConstraint connectorConstraint = (EA.ConnectorConstraint)con.Constraints.AddNew("constraint2", "type");
if (!connectorConstraint.Update())
 {
     MessageBox.Show(connectorConstraint.GetLastError());
  }


By the way ,the connector tagged value work in sam way:
EA.ConnectorTag connectorTag = (EA.ConnectorTag)con.TaggedValues.AddNew("Tag", "Value");
if (!connectorTag.Update())
{
      MessageBox.Show(connectorTag.GetLastError());
 }

Pages: [1]