How to open File Dialog and then Insert another file

How to open File Dialog and then Insert another file

Anonymous
Not applicable
1,575 Views
5 Replies
Message 1 of 6

How to open File Dialog and then Insert another file

Anonymous
Not applicable

Hello, all.

 

First, I am developing with the following system environment.

 

- ObjectARX 2011

- AutoCAD 2010

- C# with VS 2008

 

 

I am making a custom command that opens a open file dialog to prompt the user a dwg file.

And the programmatically(automatically) insert another dwg file to the opened map.

 

So what I tried to find a method to open a open file dialog, but couldn't find it.

So next I tried to execute "OPEN" command programmatically. The following code is what I tried...

 

Application.DocumentManager.MdiActiveDocument.SendStringToExecute("OPEN", false, false, false);

 

and changing the second parameter to true...

 

Application.DocumentManager.MdiActiveDocument.SendStringToExecute("OPEN", true, false, false);

 

When I run the custom command, nothing happends.

How could I do this?

 

Thank you.

 

Regards,

Jake

 

p.s. After opening a file, I want to insert ("INSERT" command) another drawing onto it. How could I achieve this?

0 Likes
Accepted solutions (1)
1,576 Views
5 Replies
Replies (5)
Message 2 of 6

Anonymous
Not applicable

Have a look into Autodesk.AutoCAD.Windows.OpenFileDialog for selecting files.

Unfortunately I don't understand the second part of your question.

Regards

Message 3 of 6

Anonymous
Not applicable

Thank you a lot~! 😃

 

The second part means...

 

When you execute "INSERT" command in AutoCAD, you (the user) have to choose a file to insert and set the base point, scale, rotation.

 

So basically I want to do these steps automatically.

0 Likes
Message 4 of 6

Alfred.NESWADBA
Consultant
Consultant

Hi,

 

have you searched for how to insert blockreferences within this forum?

Check >>>this<<<

 

- alfred -

------------------------------------------------------------------------------------
Alfred NESWADBA
ISH-Solutions GmbH / Ingenieur Studio HOLLAUS
www.ish-solutions.at ... blog.ish-solutions.at ... LinkedIn ... CDay 2026
------------------------------------------------------------------------------------

(not an Autodesk consultant)
0 Likes
Message 5 of 6

Anonymous
Not applicable
Accepted solution

Have a look for Tony Tanzillo's commandline class which basically replaces SendCommand with a much better version where you can put in PAUSE like in VisualLisp commands.

As I'm currently working on my photo-laptop I don't have it handy but you should find it within this forum. Otherwise send me an email and I'll flip it through to you once I'm back in the office (next week Tuesday).

Regards

Message 6 of 6

Anonymous
Not applicable

Thank you a lot~!

 

"Tony Tanzillo's commandline class" works great for me.

Plus, it was easy to convert VB to C# using free online converter. 😃

 

Thank you again.

 

Best Regards,

 

Jake

0 Likes