Re: [v8i SS3 MDL] Managing task navigation dialog
I have also created a custom .dgnlib to develop my own custom task dialog. In order to see only my custom task dialog without all of the other task headings that no use I found the config variable...
View ArticleRe: Change Elements Elevation with in the drawn polygon and break lines...
In case of polygon from points, tolerances have no effect.These settings are used when curves or spheres are faceted.Pass 0, 0, 0, 3 to get triangulated mesh element from your shape element.As input...
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
What you need these 8 points for?
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
Instead of Creating Mesh my sir said me to create programmatically like, as show in the figure.
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
Finally Create Like , As shown in the image
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
For this result you need only range and find intersections with lines along its Y axis.
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
I think the best solution for your tool would be to pass X axis parallel line through each considered point finding intersection points on polygon. But, that like solution will be perhaps not good if...
View ArticleRe: [v8i SS3 MDL] Managing task navigation dialog
Jan Slegr:by default all tasks and workflows in tree and defined in DGNLIB files in are displayed.To open only selected task or workflow, you have to choose it from task tree. It's easy to be done...
View ArticleRe: [v8i SS3 MDL] Managing task navigation dialog
Jon Summers:Perhaps it's similar to the print engine, where we can change settings only through key-ins?Hi Jon,Thank you. As Jan mentioned, task sendtaskchangedasync key-in is recorded by VBA but when...
View ArticleRe: [v8i SS3 MDL] Managing task navigation dialog
mwlong:I have also created a custom .dgnlib to develop my own custom task dialog. In order to see only my custom task dialog without all of the other task headings that no use I found the config...
View ArticleRe: [v8i SS3 MDL] Managing task navigation dialog
I'm not sure why it is not working. I did find this key-in to change the active task "task active MT Tasks" (no quotes needed". If I use "task active Drawing" it switches the task dialog to display...
View ArticleRe: [v8i SS3 MDL] Managing task navigation dialog
mwlong: If I use "task active Drawing" it switches the task dialog to display only the Drawing tasks.I tried this key-in in MicroStation V8i (SELECTseries 3) Update 2 and it activates the task (opens...
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
DanPaul:What you need these 8 points for? Daniel Christopher:Instead of Creating Mesh ... You seemed to have veered off-topic. Creating a mesh has little to do with your original question, which I...
View ArticleRe: DItem_PulldownMenuRsc
dw_elliott: If I change it to ALIGN_LEFT and re-compile, it works greatI suggest that you write a simple app. that illustrates this problem. For example, modify the menu in the Basic SDK example....
View ArticleRe: MVBA Modify Length of Line String
Aldrin Almia:I identify how many vertices of a Line string then get the Length of the last segment by this code:strLength = oElem.Current.AsLineElement.LengthWhere does oElem come from? If it's an...
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
This shape is either 2d or is at least planar if 3d...otherwise the "midpoint" edit handles wouldn't be displayed...Assuming the cyan lines are equally spaced, this looks like output you could get from...
View ArticleRe: [v8i SS3 MDL] Managing task navigation dialog
I found this key-in also.tasktoolbox initialize MT TasksIf you close the task dialog box first and then use the key-in mentioned above and I used save settings, this task should open the next time you...
View ArticleRe: Get Element Range Points ( 8 Points ) Microstation V8 Using MDL Language.
Hi,You can try this method also.Extract Polygon Range - Min and MAX pointsGet the vertical height of the polygon (VerHt = Max.Y - Min.y)Get the horizontal width of the polygon (HorWid = Max.X -...
View ArticleRe: mdl call from vba
Here's some code that I think may be equivalent to the MDL functions. Not tested; you may have to tweak some lines.' mdlVec_computeNormal(&xVector,point+1,point); Dim xVector As Point3d xVector =...
View ArticleRe: Convert macro to VBA DIMSET and WORDPROC
One thing you can try is to use the CExpressionSetValue and GetValue to call these. Another would be to look at the settings object to see if it has these settings. And finally try the DimStyle...
View Article