Re: [C#/mdl/V8i] link an excel spreadsheet in a dgn
I need to have the excel sheet in my dgn for printing with the plan. And i need to have the double click open link function.(like the special paste)It's work fine in V8 2004 but I can't do...
View ArticleRe: [C#/mdl/V8i] link an excel spreadsheet in a dgn
seb: How can we do the same thing with Microsoft ADO?You can't. My suggestion is an alternative to OLE. ADO is a database connectivity API. If you want to retain an Excel table in your DGN model,...
View ArticleRe: How to edit reference file name in attachment settings dialogue box via...
JW:Is there a way to change reference file names via key ins? I don't think yours is a programming question. I suggest that you post to the main MicroStation Forum.
View ArticleRe: [C#/mdl/V8i] link an excel spreadsheet in a dgn
Jon Summers:You can't. My suggestion is an alternative to OLE. ADO is a database connectivity API. If you want to retain an Excel table in your DGN model, then you must persuade OLE to work with an...
View ArticleRe: [C#/mdl/V8i] link an excel spreadsheet in a dgn
You stated you didn't want to use VBA, but it would be simpler than MDL or C++ (not sure about C# but you may be able to apply the same principal)I wrote a MVBA script to export Microstation text to a...
View ArticleRe: [V8i VBA] How to check elements are 3d snapped at intersection point and...
You must clarify your question ASAP.Prasanna Katarki:How to check elements are 3d snapped What do you mean by elements are 3D snapped?Prasanna Katarki:How to check elements are snapped at intersection...
View ArticleRe: How to edit reference file name in attachment settings dialogue box via...
Sorry maybe I didn't explain myself properly. I am trying create a batch routine that will change name of a reference file across many drawings. I need to do this because I want to copy and merge this...
View Article[V8i VBA] Problem about Display Style
I wanna know why cannot work with setting Display Style.I tried to run both VBA code:ActiveDesignFile.Views.Item(1).RenderMode = msdRenderingModeWireFrameCadInputQueue.SendKeyin "DISPLAYSTYLE SETPARAM...
View ArticleRe: [C#/mdl/V8i] link an excel spreadsheet in a dgn
steve144:You stated you didn't want to use VBA, but it would be simpler than MDL or C++ (not sure about C# but you may be able to apply the same principal)I wrote a MVBA script to export Microstation...
View ArticleRe: Error in Bmake while compiling
Michael StarkI asked previously who suggested the call into mstndevvar from another cmd file. Actually, I don't know other way how to compile.Would You please explain me step by step how compile...
View ArticleRe: [V8i VBA] How to check elements are 3d snapped at intersection point and...
Hi Jon,sorry for creating cofusions, i just simplify my question. if two 3D elements are intersect, then i want to check the height(z-coordinate) of the two elements at intersection and insert a...
View ArticleRe: [V8i VBA] How to check elements are 3d snapped at intersection point and...
Get the intersection points between 2 lines (use 'GetIntersectionPoints' Method)Project the intersection point to the 2 lines. (use 'ProjectPointOnPerpendicular2' Method)Compare the 2 projected points...
View ArticleRe: Move view to second application window by macro / VBA
Hi Jon,Yes, I know this menu and yes I was also little bit frustrated by searching it.But it is not so practical as the menu for basic macros -> Utilities|Macro|Micro Station BasicWith the basic...
View ArticleRe: [V8i VBA] How to check elements are 3d snapped at intersection point and...
Thanks Sivag,I will try the above and get bcak to you if I need further informaton on this.Best regards,Prasanna
View ArticleRe: Error in Bmake while compiling
Julia Frid:Would You please explain me step by step how compile example?Start (open) MicroStation Development Shell.Go to the directory, where an example (its mke file) is placed.Start the compilation...
View Article[C#] List of Microstation open Form
Hi,Is it a way to have the list of open Microstation windows in C#?RegardsSeb
View ArticleListRow Question
I have a ListBoxRsc which contains a ListModel. I'm traversing down the list, getting what I need from each row and thendeleting the row: rowP = mdlListModel_getRowAtIndex (listP, i);...
View ArticleRe: [V8i VBA] Problem about Display Style
Hi,I did a "record" and got CadInputQueue.SendKeyin "CHANGE VIEW CUSTOM ""Wireframe"" 1"Is that what you want?--Robert
View ArticleRe: ListRow Question
dw_elliott: rowP = mdlListModel_getRowAtIndex (listP, i); mdlListRow_destroy (rowP); mdlDialog_listBoxNRowsChangedRedraw (diP->rawItemP, TRUE);If you are stepping through the list starting at zero,...
View ArticleRe: ListRow Question
Try mdlListModel_removeRowAtIndex instead, in a reverse loop. int rowCount = mdlListModel_getRowCount (listP); for (int rowIndex = rowCount-1; rowIndex >= 0; rowIndex--) {...
View Article