Open file problem

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
dlwotj4274
Posts: 13
Joined: 19 Jun 2019, 07:30

Open file problem

Post by dlwotj4274 » 30 Jul 2019, 04:35

I'm working with CADEditorControlDemo.

Is it possible to open a dwg file without open dialog?

I would like to open a dwg file by file path which I was already known.

I know that I can use 'vDrawing.LoadFromfile(path). However is it need to have a Image in winform?

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Open file problem

Post by support » 30 Jul 2019, 20:15

Hello,

CADEditorControl provides two overloaded methods that allow to open a drawing file with OpenFileDialog or by the file path:

Code: Select all

public void LoadFile(bool dlg);
public void LoadFile(string fileName);
CADImage.LoadFromFile(path) method loads the drawing data into the CADImage object from a file and doesn't require any visual component on a form.

Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply