RE: Starting microstation programing
Dear Sir, I got your point, I am working in one of leading power EPC company and we are spending lots of time in modeling activities so I just want to reduce this time with the help of programming....
View ArticleRE: Starting microstation programing
hi Jon, First of all thanks for taking interest and giving answer. further to you answer, would you please give me some of website or link address from where I'll get some basic information regarding...
View ArticleRE: Starting microstation programing
Hi Jignesh,[quote user="Jignesh Soni"]would you please give me some of website or link address[/quote]Start with MicroStation VBA help fileRead Developing code in VBA wiki articleBuy Learning...
View ArticleRE: Starting microstation programing
thanks for quick reply I'll check on mentioned link by you
View ArticleRE: Starting microstation programing
[quote user="Jignesh Soni"]I want your guidance for established link between Excel and MicroStation[/quote]Read this article about MicroStation VBA and Excel.
View ArticleStarting microstation programing
I am working on microstation and other drafting software from so long time. So now I want to start programming in Microstation.so any one can guide me how can I start? and from where I'll get reading...
View ArticleRE: [CONNECT DgnPlatformNet] How do I spell IViewManager::UpdateView in C#?
[quote user="Paul Connelly"] Maybe you should describe why you feel you need to update the viewport[/quote]I'm attempting to focus a view on a particular element. Here's where I'm setting the view...
View ArticleRE: [CONNECT DgnPlatformNet] How do I spell IViewManager::UpdateView in C#?
[quote user="Brien Bastings"]No, when was the last time you had to click on the Update View icon while drawing? [/quote]I'm not drawing. I've changed view parameters and want to see the new display,...
View Article[CONNECT] Scope of DgnPlatformNet
[quote user="Paul Connelly"]Regarding the managed API: you are never going to be able to do *everything* in managed code that you can in native code.[/quote]A year or two ago, MicroStation CONNECT was...
View ArticleRE: [V8i VBA] Help to improve code to update reference logical names.
Ryan,If your file names are consistent with a set of standard suffixes you may be able to use wildcards in the if statement. Here is an untested snippet:if att.AttachName like "*TB.dgn" or...
View ArticleRE: [CONNECT DgnPlatformNet] How do I spell IViewManager::UpdateView in C#?
Would sending a keyin do as a workaround for now? Bentley.MstnPlatformNET.Session.Instance.Keyin("update view extended");
View ArticleRE: [CONNECT DgnPlatformNet] How do I spell IViewManager::UpdateView in C#?
Unfortunately, a keyin is also my current workaround.
View ArticleRE: [CONNECT DgnPlatformNet] Highlight Element
Is the highlight needed for an interactive (selection) command or for (results) display purposes only?For the latter case, I believe you can add elements to, and use:...
View ArticleRE: developers forum
Sorry if I do not fully understand what area you would like to see more of, but if in a generic sense you wish to run your Web Browser (Internet Explorer, Chrome, others? - desktop only) full screen...
View ArticleRE: MDL CONNECT Migration tool ignore some files
Hi Eduardo,Migrating MicroStation V8 code to MicroStation CONNECT (v10) presents a number of choices to make and coding advancements and opportunities to be leverage. The product itself is 64-bit, is...
View ArticleRE: [CONNECT DgnPlatformNet] Highlight Element
[quote user="Robert Hook"]use: Bentley.DgnPlatformNET.ElementAgendaDisplayable[/quote]Thanks for that tip! Since it's an undocumented class I don't suppose I would have found it. FWIW, here's the...
View Article[CONNECT DgnPlatformNet] Highlight Element
How do I highlight an element using C#? For comparison, see VBA's Element.IsHighlighted
View ArticleRE: [CONNECT DgnPlatformNet] How do I spell IViewManager::UpdateView in C#?
[quote user="David Larson"]Would sending a keyin do as a workaround for now?[/quote]Thanks! However, I'm exercising the DgnPlatformNet as far as possible. I prefer to find what that API can do...
View ArticleRE: [V8i VBA] Help to improve code to update reference logical names.
Yeah that might work. That got me thinking though I might be able to use a "not" statement. For the files I wanted to run this on, one of file is referenced multiple times and that one file has the...
View ArticleRE: [V8i VBA] Help to improve code to update reference logical names.
I have altered the code using to just exclude the one file and that works. I'm not sure how to use a wildcard with this syntax so I still have to use the whole file name, but it's shorter code to...
View Article