Re: mdlView_updateSingle returning MDLERR_USERABORT (-144)
I suppose we are talking of V8i ? After introducing the 'self-healing' drawing mode with DirectX in MicroStation XM, mdlView_update might no longer return success, in fact it should even not be...
View ArticleRe: detect if level exist and create it (vba 8.05)
Hi,This is just a suggestion for you code:For Each Mylevel.... If ... then StatusLevel = True:Exit ForNextThe Exit For will keep you from continuing to look for your level after you have found...
View ArticleRe: mdlView_updateSingle returning MDLERR_USERABORT (-144)
Are you certain you supplied a valid view index? It looks to me like passing a view index for a view that isn't open is the only case where this status would be returned (should have been...
View ArticleRe: mdlView_updateSingle returning MDLERR_USERABORT (-144)
Yes, I am talking about Microstation V8i. The view number is supplied OK, but I made the error to check for the return value. Did not expect the returned result. Should the documentation be updated?...
View ArticleRe: Dynamic Display of Elements
Msreekanta:void fun_DynmicDisplay(Dpoint3d *ptP,int view,int drawMode)I need like dynamic display of bunch complex elementsBuild an element descriptor chain that contains those elements, then...
View ArticleRe: mke error (toolsubs.dlo)
Help us to help you: pasting a screenshot of the build output is useful, but hard to read (dark red text on a black background). It would be more legible if you were to copy-and-paste the text window...
View ArticleRe: mdlView_updateSingle returning MDLERR_USERABORT (-144)
MirceaT:Yes, I am talking about Microstation V8i. The view number is supplied OK, but I made the error to check for the return value. Did not expect the returned result. Should the documentation be...
View ArticleUpdating MSElementDescr
I have an MSElementDescr which contains an int. After placing my MSElementDescr, I'm incremented the int. Is there an easier way to update the MSElementDescr without having to walk each element until I...
View ArticleRe: Updating MSElementDescr
Clarification: My int is contained in a structure. I've incremented it's value and want to update my MSElementDescr prior to placig it again. Thansk!
View ArticleRe: Updating MSElementDescr
I don't understand what you want to do.An MSElementDescr doesn't contain an int, whether or not in a struct. Are you referring to the UserData members of MSElementDescr ?dw_elliott:Is there an easier...
View ArticleRe: detect if level exist and create it (vba 8.05)
Why not useIf ActiveDesignFile.Levels.Find(NameLvl) Is Nothing Then...Else...End If
View ArticleRe: mke error (toolsubs.dlo)
Hai Jon,Please find error while compiling and it is working in the earlier version ie v8MicroStation Development Language Linker 08.11.07###...
View ArticleRe: mke error (toolsubs.dlo)
To paraphrase the linker messages, we see a number of 'unresolved symbols'. Unresolved symbol in d:\work\jk\objects\searchElem.mo ... lmGetConfigFilePath lmValidIsDigit lmGetLinkInfoByElem...
View ArticleRe: detect if level exist and create it (vba 8.05)
eeking:Why not useIf ActiveDesignFile.Levels.Find(NameLvl) Is Nothing ThenBecause that test throws an unexpected error when the level does not exist. Here's a function that traps the error...'...
View ArticleRe: [v8i VBA]How to check a polygon is a clockwise or antclockwise using VBA
PrasannaI really suggest you to read VBA for Microstation Basics first.Try will simple programs first and master it. Its very easy when you try yourself.When you start looking for help, your knowledge...
View Article[2004 MDL] Unload Function
Hello all,i want to know about the unload function when i click cancel or cross from the dialog box. when i searched, there are lots of function and i am confused which funtion to use.any help and...
View ArticleRe: [2004 MDL] Unload Function
sagar:I want to know about the unload function when I click cancel or cross from the dialog boxIf your application has a single dialog box, and the application has no work to do when that dialog is...
View ArticleRe: [2004 MDL] Unload Function
Thanks for the reply, when i used mdlDialog_cmdNumberQueue (FALSE, CMD_MDL_UNLOAD, mdlSystem_getCurrTaskID (), TRUE);i got the error message that CMD_MDL_UNLOAD is undeclared. isnt this CMD_MDL_UNLOAD...
View Article