• [C# Connect] Retrieving Element Tags

    Is there a better way of retrieving a Tag Element that belongs to a specific element other than iterating all of the elements of a model looking for a matching Target Element? I suppose a little better if doing multiple queries at once would be to stick…
  • [CONNECT C# Addin] Color Picker

    Is there a color picker available in CONNECT .NET? I see the ColorPickerPopup control but I can not add it dynamically to a WinForm.
  • [CONNECT C++] AssociativePoint::InitXxx

    void AssociativePoint::InitOrigin (AssocPoint& assocPoint, UShort option ); What values are suitable for option ? Help says See also: DisplayHandler::GetSnapOrigin but why? void AssociativePoint::InitKeypoint ( AssocPoint & assocPoint, UShort…
  • [CONNECT C++] Using Associative Point with Cell

    I can associate a text element with a target element using TextHandlerBase::SetupOffsetAssociation . Consequently, when a user moves the target element, the text element moves with it. I'd like to do the same with a normal cell: that is, associate the…
  • [Connect] How to save application specific data in a dgn document

    Hi I would like to save some application specific data in the design file. In V8i it was possible to save data in an ApplicationElement. I haven't found any way to do that in the new API in C#. Then I looked for a way to do it in the C++ API but the…
  • [V8i C#] ECFramework Can't get DataSet from QueryResultsCass.

    Hello all, I try to query same data from my spatial database I use ECFramework to do this. Everything work fine but when I try to get DataSet from QueryResults Method thrown this exeption: Instance must refer to class in the query Exception thrown…
  • [V8i C++] mdlAssoc_createOrigin()

    I'm looking at mdlAssoc_createOrigin() in an attempt to create an association between a line and a cell. The line is written into the model just prior to the association attempt: ElementRef m_lineElemRef=m_lineElm.GetElemRef(); AssocPoint assocPt;…
  • Difference in results from ATN function from UCM and ATN2 v8

    Hi, I have been tasked to convert macros from Microstation v5 to Microstation v8i. The UCM code uses this code: ANGLE: SET A3 = I2 - I0 ;A3 = delta x SET A4 = I3 - I1 ;A4 = delta y SET A5 = A3 * A3 ;Calculate length of hypotenuse SET A6 = A4 * A4…