Message 1 of 1
Imported Drawing Path

Not applicable
04-07-2010
05:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I'm intercepting the EndCommand "INSERT", "XATTACH" events.
What I need is the path of the drawing that i'm importing in AutoCAD with this method.
example:
{code}
Private Sub AcadApplication_EndCommand(ByVal CommandName As String)
Select Case CommandName
Case "-INSERT", "INSERT", "XATTACH"
MsgBox "PATH OF THE IMPORTED FILE\DRAWING" '<------ that''s what i need
End Select
End Sub
{code}
Is intercepting that commands right?
How can I obtain that string?
Thanks,
Luca Capoferri
I'm intercepting the EndCommand "INSERT", "XATTACH" events.
What I need is the path of the drawing that i'm importing in AutoCAD with this method.
example:
{code}
Private Sub AcadApplication_EndCommand(ByVal CommandName As String)
Select Case CommandName
Case "-INSERT", "INSERT", "XATTACH"
MsgBox "PATH OF THE IMPORTED FILE\DRAWING" '<------ that''s what i need
End Select
End Sub
{code}
Is intercepting that commands right?
How can I obtain that string?
Thanks,
Luca Capoferri