Open file problem
Moderators: SDS, support, admin
-
- Posts: 13
- Joined: 19 Jun 2019, 07:30
Open file problem
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?
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?
Re: Open file problem
Hello,
CADEditorControl provides two overloaded methods that allow to open a drawing file with OpenFileDialog or by the file path:
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
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);
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support