hi,
I want to learn microstation programming with .net.
this is the microstation is a cad tool which is used to draw the design of engineering services and plans.
i need some document with step by step all related programming for this.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hemant KumarPosted Nov 11, 2011, 1:47 AM
If you are using Visual Studio 2010:
1. Open your project or create a new one
2. Select the "Project" menu
3. Select "Add Reference..."
4. Select the "COM" tab
5. Browse down to find "Bentley MicroStation DGN 8.0 Object Library"
6. Click it and then select the "OK" button
7. You can then reference the commands through MicrostationDGN.Application
When you want to use one of the commands in your code, do something like:
public Form1()
{
MicroStationDGN.Application oMstn = new MicroStationDGN.Application();
oMstn.CadInputQueue.SendCommand("xs=1");
}
Elambarithi MarimuthuPosted Jan 20, 2014, 6:17 AM
I want to learn Microstation programming with csharp.
how to customize microstation with terrasolid products.
how to create macros in microstation with terrasolid
sufiya khanPosted Nov 13, 2011, 11:24 PM
But this is the starting things that i know .
Please provide the solution to learn further all commands of microstation using .net.
If possible i need step by step tutorial for complete learning.