Re: KIEDGE VS KICOEDGE
Guanghe:I think it is possible to get solid body's details from the returned wire body.As I said, it's not...mdlKISolid_slice is implemented as a non-regular boolean intersection (result is allowed to...
View ArticleDebug Error (Microstation V8 Using MDL Language)
C:\Users\db19733\Desktop\PolyChange>mcomp -g PolyChange.mcMicroStation Development Language Compiler 08.05.02C:\Users\db19733\Desktop\PolyChange>mlink -g -aPolyChange.mp PolyChange.mo...
View ArticleRe: Debug Error (Microstation V8 Using MDL Language)
The linker is missing "mdlMesh_fromMSBsplineSurface,
View ArticleRe: Can we create plugin for Microstation
Thanks i was able to create a menu item(tab) in microstation.Can you suggest me how can i run a exe file by clicking on this menu item or calling a macro to run the exe.The exe(executable file) is an...
View ArticleRe: Can we create plugin for Microstation
m.yb:how can I run a exe file by clicking on this menu itemFirst, understand how to start a .exe from a MicroStation key-in. It's documented in MicroStation help. Search for the % key-in.You can...
View ArticleRe: Debug Error (Microstation V8 Using MDL Language)
When analysing the messages from a build, narrow them down to the most serious. First, note that the compiler mcomp.exe succeeded, then you started the linker mlink.exe. Now throw away all warning...
View ArticleRe: [v8i SS2] Boundary of a TextNode Element
RJ:Since I declare Public oEnumerator As ElementEnumerator as public.If this is wrong?It isn't wrong, but it's not good programming practise.RJ:How can I use oEnumerator in the Function...
View ArticleRe: [v8i SS2] Boundary of a TextNode Element
RJ:I have 32 TextNode Elements under EQUIPMENT-LABEL in this dgn file.Are you sure all of these elements are of type TextNode?Are you sure all of these elements are in active model reference and not in...
View ArticleRe: [v8i SS2] Boundary of a TextNode Element
RJ:I have 32 TextNode Elements under EQUIPMENT-LABEL in this dgn file.A DGN file is a container. It contains one or more models. A model contains graphic elements."I have 32 TextNode Elements" could...
View ArticleRe: Can we create plugin for Microstation
Plug-In or Shortcut?Adding a menu to launch an executable is a simple short-cut. That's not a plug-in.If you want your app. to interact with a MicroStation DGN session, you must do a little more than...
View ArticleRe: VBA Drop Element of a circle to remove hidden line.
Aldrin,As Jon and Jan have stated a circle (Ellipse element) is a basic MicroStation element type and cannot be dropped. You can stroke it using the EllipseElement.ConstructVertexList() method. The...
View ArticleRe: KIEDGE VS KICOEDGE
Thanks a lot!!By using mdlKISolid_imprintBodies, I've got the faceID connected with the edge.:)
View ArticleRe: Debug Error (Microstation V8 Using MDL Language)
Here is my batch file(.bat).Am i doing anything wrong ?clsmcomp -g PolyChange.mcmlink -g -aPolyChange.mp PolyChange.mo %ms%\mdl\library\builtin.dlorlib -oPolyChange.ma PolyChange.mp PolyChangeDlg.rsc
View ArticleRe: Debug Error (Microstation V8 Using MDL Language)
Certainly!try this:mlink -g -aPolyChange.mp PolyChange.mo %ms%\mdl\library\builtin.dlo %ms%\mdl\library\msbspline.dlo
View ArticleRe: Debug Error (Microstation V8 Using MDL Language)
Daniel Christopher:Am I doing anything wrong ?You're writing your own build tool. That's what a make file is for. Don't reinvent the wheel.
View Articleget and/or set the transparency of an element via mdlElement_...
Hello,is there any way to get or set the element transparency with a MSElement-Pointer?I have scanned the docs and the include files ( MS_V8) , but there is no such function or data member.Is there any...
View ArticleRe: get and/or set the transparency of an element via mdlElement_...
treenok:Is there any way to read and change the transparency property of an element?Prefer to work with ElementRefs or MSElementDescrP rather than MSElement. The only time you need declare a variable...
View ArticleRe: Change Elements Elevation with in the drawn polygon and break lines...
MSBsplineSurface SurfaceBSpline;MSElementDescr *MeshMsElmDescr=NULL;return = mdlBspline_convertToPlanarSurface(&SurfaceBSpline,gMSElmDescr,0.0);return --------- 0; -------------- out...
View Article[V8i-SS2 VBA] File Properties - Statistics
Hi Folks,I would like to read values from the File > properties > Statistics tab; for example, reading the number of elements.Is there a VBA method of doing this please?I expected something in...
View ArticleRe: MVBA Modify Length of Line String
Hi Aldrin,Aldrin Almia:However, ny problem was how to rewrite the length.Such request has no sense. The line length is result from geometrical properties of the line: It's the distance between start...
View Article