RE: [V8i] Is it possible to check for Windows Domain Group Membership in .cfg...
[quote user="Jon Summers"]Why is it apparently affiliated to AECOsim Building Designer when it's about MicroStation CONNECT?[/quote]I agree the Building group post only discusses pure MicroStation...
View ArticleRE: [CONNECT] MS_CFGVARS_APPS
Hi Jon,MS_CFGVARS_APPS goes back at least through the first releases of MicroStation V8 and is an internal mechanism for processing Bentley MDL application configuration variables. I am not sure there...
View Article[CONNECT] MS_CFGVARS_APPS
In another thread, Robert Hook referenced this useful help document Configuration Changes in CONNECT Edition.That document led me to investigate some points of interest, which in turn led me to...
View ArticleRE: Plotting the point form Excel to Microstation
at the risk of being flamed for saying this in a vba forum, the operation you seek doesnt need creating, mstn already has a tool for this its the Import coordiantes tool and will do what you want...
View ArticlePlotting the point form Excel to Microstation
Hi All,i have a excel file, that contain the point data as follow:I am the VBA beginner, i want to write a VBA code to create the point in different level form excel to Microstation.Any one can help,...
View ArticleRE: [v8i MDL C++] MDL works in Debugging-mode, but crashes outside of...
Hi Jon,Do you start your app. using MDL LOAD XXXX key-in? Or some other way?I tried both: Choosing and loading the MDL from the MDL-Menu and by command-line "MDL Load <mdl-Name>", but the result...
View ArticleRE: [v8i MDL C++] MDL works in Debugging-mode, but crashes outside of...
Please follow the MicroStation Programming forum best practices.Code Syntax HighlightingWhen you post code, use the Forum advanced editor's syntax highlighting tool. That's the icon that resembles a...
View Article[v8i MDL C++] MDL works in Debugging-mode, but crashes outside of Debugging!?
Hi everyone,During updating an old v7-MDL into v8i-MDL I had no more error-messages during compilation with bmake (creating DLL and *.MA-file), so I was in good hope that the MDL would run.But now I...
View ArticleRE: [V8i] [C# .NET] Using Undo function in IPrimitive Event
Hi,[quote user="clever_anthony"]I would like to write a tool which is similar to place smart line[/quote]COM API used in V8i for managed code has plenty of limitations, not only the discussed one. Some...
View Article[CONNECT C++] MS_DGNAPPS porting from V8i to Connect
I've got a V8i "MS_DGNAPPS" that I want to port over to Connect. I see the Connect docs no longer seem to have the sections relating to MS_INITAPPS. Also, when I start call my app via MS_DGNAPPS, I now...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
I am assuming that you are referring to a DgnPrimitiveTool in which case, you could try overriding bool OnModifierKeyTransition(bool wentDown, int key)I am currently using it to check for Control\Alt...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
Thanks for the quick reply. Are you using this in .NET? If so, I can't find any reference to an event, do you know what dll would need to be referenced?
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
Yes using this in .NET using the DgnPlatformNET API. It is a virtual method of the DgnPrimitiveTool class
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
I really appreciate your help. If you have a moment, what actually triggers the usage of the method? I have dynamics started but pressing keys (instead of mouse buttons) does not trigger the code to...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
I do not think I am doing anything other than BeginDynamics(). Not sure that this is even required. Is it triggering for modifier keys (shift, control, alt, etc)?
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
[quote user="Mike Robertson"]Is there a way to listen for key presses while inside dynamic input loop in a .NET addin?[/quote][quote user="Maury"] I am assuming that you are referring to a...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
Mike, You need to explain what you're trying to accomplish. Are you in fact writing a DgnTool? What keys specifically do you care about? Care to share your relevant code? Etc...This way we don't have...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
Right now I'm doing some simple testing to help out one of my co-programmers.I'm dynamically drawing a simple line, enter datapoint, rubberband temporary line while waiting for second data point. While...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
thanks. OnModifierKeyTransition() is for modifier keys only (control, shift, alt - see DgnPlatformNET.KeyModifierMasks). The native (C++) version of DgnTool supports _OnKeyTransition() which can handle...
View ArticleRE: [CONNECT C# Addin] Detect key press inside Dynamic input
[quote user="Paul Connelly"] The native (C++) version of DgnTool supports _OnKeyTransition()[/quote]Thanks for pointing that out.I notice that the MicroStationAPI also offers SetKeyinFunction(), which...
View Article