Re: [V8i C#] C# code to .ma
For managed applications (we call them AddIns) you do not need to create a .ma. The system is smart enough to load the dll. Why do you think you need the .ma file? Regards,
View ArticleRe: [V8i C#] C# code to .ma
Yes, the V8i can load the .dll files fine but the Powerdraft series doesn't support loading them dynamically. That is why I need .ma files.Thanks
View ArticleRe: [V8i C# Addin] FloodFill Method
In my application, I've referenced:Bentley.General.1.0bentley.interop.microstationdgnbentley.microstationbentley.microstation.interfaces.1.0bentley.windowingustationYou all have been a big help on...
View ArticleRe: [V8i C# Addin] Storing data in the DGN file?
Thanks, I was able to get tags to work. The only reason I mentioned it might be messy was that I need to store > 1 tag set per element in some cases. Each tag set then has several tags. But in the...
View ArticleRe: [V8i C#] C# code to .ma
Ahh, that is a different issue. If you are the original author, what you can do is contact BDN@Bentley.com (or support) with the dll name and a description of the functionality of the application....
View ArticleRe: [V8i C# Addin] FloodFill Method
zCane75:Is one of the references above including that?Yes, it is bentley.interop.microstationdgnzCane75:Can anyone point me to the function in C# for GetFloodBoundary?Probably now I understand what...
View ArticleRe: [v8i] How to use MsdDimStackedFractionAlignment class
Can you do it with plain Microstation ? NO!So you can't do it with VBA nor anything else!Dimensions are differnet concept than text elements.
View ArticleRe: [v8i] How to use MsdDimStackedFractionAlignment class
TextStyle is applied to TextElement, DimensionStyle is applied to DimensionElement. You can't apply DimensionStyle to a TextElement.
View ArticleRe: [V8i C#] C# code to .ma
Why you need a .ma file for your C# code ? As a addin application, you just need a DLL file to run.Acutually, when MicroStaton load a addin DLL file, it will create a corresponding MA file from a seed ma.
View ArticleRe: I need to know when raster attachments finished loading
Hi Jon,The SYSTEM_NEW_DESIGN_FILE callback with the state SYSTEM_NEWFILE_COMPLETE only informs you about the normal attachments. I am asking about the raster attachments that seem to load later. And...
View ArticleRe: I need to know when raster attachments finished loading
I think there is no way to be informed by MicroStation wheter for example all WMS raser tiles are complete. If you know how to check, whether all rasters are complete in your meaning, perhaps you can...
View ArticleRe: I need to know when raster attachments finished loading
MirceaT:SYSTEM_NEWFILE_COMPLETE only informs you about the normal attachmentsThanks for that observation. In that case I don't see any mechanism, either in MDL or the MicroStationAPI, that tells us...
View ArticleOpen Google Earth By Picking a Point at Required Location in a...
Hi Guys,Tool Requirement : User will Pick a Point in dgn at Required Location Based on the Picked Location Coordinates, i need to open google earth and zoom to thespecified location.Questions:1) Is it...
View ArticleRe: I need to know when raster attachments finished loading
You may want to use mdlInput_setFunction (INPUT_ENTER_IDLE, HandleEnterIdle) as originally mentioned in this post. The HandleEnterIdle event is a void function with no parameters; like:# include...
View ArticleRe: Open Google Earth By Picking a Point at Required Location in a...
Can you navigate google eath?Once you have datapoint, perhaps you will need to convert it to WGS84.
View ArticleRe: [V8i C# Addin] FloodFill Method
Thanks. I was able to find it after following the code above!
View Article[V8i C# addin] Double click interception
Any way in C# to intercept a double click in Microstation? I'm working on an addin and want to get the X,Y coordinates of the point when the user double clicks. I've found this article that explains...
View ArticleRe: [V8i C# addin] Double click interception
Your problem is not calling the mdlLocate... function, but to provide a callback function that works like a static C function (or better the pointer to that function). AFAIK there is currently no way...
View Article