Browse By Tags

  • [CE MDL/C++] Problems with mdlElmdscr_stroke

    Hi I want to stroke a complex chain element and into an array of points. In V8i I used the function mdlElmdscr_stroke: #define SCALE (mdlModelRef_getUorPerMaster(MASTERFILE)) if (mdlElmdscr_stroke(&pptdPts, &iVertices, pedCurve, 2.0 * SCALE) == SUCCESS…
  • [CONNECT Update 17 C++] MDL load error in MicroStation Update 17

    Hi! I have a native MDL application that runs perfectly in MicroStation Update 16, but in MicroStation Update 17 I get a MDL loader error 127 I'm using the latest MicroStation SDK when compiling the application. I have other native MDL application…
  • Microstation Connect MDL Edit Tags in a Descriptor

    Hello: I have an issue related to edit tags using MDL on MS Connect. I'm trying to edit a tag attached to an existing cell. It is the code I'm using but I think something is missing. int can_tag = 0; int suma = 0; DgnTagValue val_tagm; DgnTagSpec…
  • Get and Set ACS

    Hello, In the SDK is the example "ViewInfoExample". I build it, but it's not working correctly. If I change the Origin of the ACS in any View, the "View Info Description" doesn't show this change. Closing and reopening these windows doesn't help.…
  • Load MDL app on Application Startup (MS_INITAPPS)

    I am facing some issues in Successful loading MDL apps on Startup. I have modified code as below and loaded MDL app. if (strcmp(l_str_argument.c_str(), "MS_INITAPPS") == 0) { mdlSystem_enterGraphics(); mdlInput_sendCommand(CMD_DIALOG_OPENFILE…
  • How to sign .ma file using rsign.exe

    Hi, I need to sign .ma application. I read .ma application can be signed with rsign.exe. But I didn't found rsign.exe in SDK location. Where can I find rsign.exe to sign .ma file. Also heard rsign.exe is not delivered with MicroStation Connect SDK…
  • log4net error when calling mdlSystem_newDesignFile in MicroStation 10.15.00.74

    All, We have a legacy MicroStation application which has been problem-free but which was recently tested running on MicroStation 10.15.00.74. The application runs as an INITAPP and never calls mdlSystem_enterGraphics. Upon calling mdlSystem_newDesignFile…
  • [CONNECT C++] Editing a text element from its eeh

    Greetings, I'm currently struggling with some text modifications (C++ MDL, Microstation Connect Edition). I'm importing text elements from a DWG file into Microstation. I'd like to change some of their attributes before adding them into the DGN active…
  • Detecting a Cached Saved View Attachment in MicroStation CONNECT

    Hi All, I have some legacy VBA code from v8i that I'm trying to port over to the CONNECT versions - it's using a CExpression with a pointer into the referenceFile struct for a specific reference: Private Declare PtrSafe Function mdlRefFile_getInfo…
  • How to dynamically call the DAT/EM Button manager system Mouse configuration in MicroStation VBA?

    In the summit evolution software, draw only 2d point hight (z value) in the MicroStation v8 but using the summit evolution software the below options are set manually in the software. and then I will pick any point on the map it should move to 3d point…
  • How to load project and run macro in MicroStation CONNECT Edition using vb.net?

    I need to load and run a .mvba file in MicroStation CONNECT using vb.net. I used the below code but its only worked in MicroStation v8. Do I need to install any other supporting files or to change the below code for execute the below key-in command in…
  • 关于MS connected版本的渐变色填充

    MS ce版本开发,想对一个元素使用渐变色填充,比如使用彩虹色填充,在帮助文档中找到 AddGradientFill ( EditElementHandleR eeh, GradientSymbCR symb),这个函数,但是不知道这个函数怎么使用,关于 GradientSymbCR 的描述非常少,不知道里面的函数SetKeys()等怎么用。可否提供一段样例代码学习下?
  • Custom Menu Item in CONNECT

    Hey everyone! So, I have a working MDL (written in C++) set up with Connect that provides functionality where I can intercept and basically override certain commands with my own functionality. In some cases, this functionality is launching an outside…