• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Valued Contributor
    Posts: 68
    Registered: ‎01-09-2009

    Re: ThisDrawing.Path equivalent

    01-13-2011 10:49 PM in reply to: aielli

    dan.glassman => thx man!

    Please use plain text.
    New Member
    johnel48
    Posts: 1
    Registered: ‎12-31-2011

    Re: ThisDrawing.Path equivalent

    12-31-2011 03:35 PM in reply to: aielli

    <CommandMethod("Test1")>
    Public Sub Test1()

    Dim path As string = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Database.Filename.ToString

    If Right(path,3) <> "dwg" then
    MsgBox("This file has not been saved")
    Else
    MsgBox("ThisDrawing = " & path)
    End If

    Dim NewPath As String = Left(path, Len(path)-3) & "dat"
    MsgBox(NewPath)

    End Sub

    Please use plain text.
    Member
    beeb.pm.Net
    Posts: 3
    Registered: ‎01-07-2012

    Re: ThisDrawing.Path equivalent

    01-07-2012 09:59 PM in reply to: aielli
    Imports Autodesk.AutoCAD.Interop
    Imports Autodesk.AutoCAD.Interop.Common
    
    Public Shared ReadOnly Property ThisDrg() As AcadDocument
            Get
                Return Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.AcadDocument
            End Get
        End Property
    
    
       Public Shared Function GetPath(ByVal ThisDrg As AcadDocument) As String
            Dim strPath As String = ThisDrg.FullName
            strPath = IO.Path.GetDirectoryName(strPath)
            Return strPath
        End Function

     

    Please use plain text.