Get ready for AutoCADLT2024 users...

Get ready for AutoCADLT2024 users...

pendean
Community Legend Community Legend
480 Views
2 Replies
Message 1 of 3

Get ready for AutoCADLT2024 users...

pendean
Community Legend
Community Legend

pendean_0-1680014091542.png

 

pendean_1-1680014139648.png

 

pendean_2-1680014270493.png

 

481 Views
2 Replies
Replies (2)
Message 2 of 3

dmfrazier
Advisor
Advisor

Interesting....

Message 3 of 3

Sea-Haven
Mentor
Mentor

How much does the LT upgrade cost compared to say Bricscad Lite ? Which is perpetual and not yearly.

 

I am sure we will see lots jump to LT 2024 just for the lisp.

 

What about this running Autocad from Excel. Can anyone test ? 

 

Sub Opendwg()
 
    Dim acadApp As Object
    Dim acadDoc As Object

 'Check if AutoCAD application is open. If is not opened create a new instance and make it visible.
    On Error Resume Next
    Set acadApp = GetObject(, "AutoCAD.Application")
    If acadApp Is Nothing Then
        Set acadApp = CreateObject("AutoCAD.Application")
        acadApp.Visible = True
    End If
 
    'Check (again) if there is an AutoCAD object.
    If acadApp Is Nothing Then
        MsgBox "Sorry, it was impossible to start AutoCAD!", vbCritical, "AutoCAD Error"
        Exit Sub
    End If
    On Error GoTo 0
 
    'If there is no active drawing create a new one.
    On Error Resume Next
    Set acadDoc = acadApp.ActiveDocument
    If acadDoc Is Nothing Then
        Set acadDoc = acadApp.Documents.Add
    End If
    On Error GoTo 0
  
    'Check if the active space is paper space and change it to model space.
    If acadDoc.ActiveSpace = 0 Then '0 = acPaperSpace in early binding
        acadDoc.ActiveSpace = 1     '1 = acModelSpace in early binding
    End If

 End Sub

 

Also the other LT to Excel is probably not possible as need (vlax-get-object "Excel.Application") or (vlax-get-or-create-object "excel.Application") as it mentions not available.

 

0 Likes