AVAX-software.com Forums: Autocad Versions >2000 - AVAX-software.com Forums

Jump to content

Page 1 of 1

Autocad Versions >2000

#1 User is offline   MarioRainer Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 43
  • Joined: 11-May 08
  • Location:Germany

Posted 15 May 2008 - 01:34 PM

Hello

war you planned a support for newer Autocad Versions >2000 ?
I do not think the support by Autodesk for the versions <= 2000 any
longer for a long time am kept upright.

Please they inform me about planned activities of you.

friendly

Mario Rainer

#2 User is offline   Athanasios Gardos Icon

  • Administrator
  • Icon
  • Group: Admin
  • Posts: 333
  • Joined: 21-March 05
  • Gender:Male

Posted 16 May 2008 - 10:45 AM

It is on our plans a better solution on the DWG import/export but now we are working to translate AVAX in VB.NET. When we finish the .NET project (I hope in a month) we will see it.
Athanasios Gardos
Avax-Software.com

#3 User is offline   Athanasios Gardos Icon

  • Administrator
  • Icon
  • Group: Admin
  • Posts: 333
  • Joined: 21-March 05
  • Gender:Male

Posted 17 May 2008 - 09:08 AM

If your computer has AutoCAD maybe you can use the following code to manage different versions of AutoCAD files:
 
Private WithEvents acadApp As AcadApplication

Private Sub Form_Load()
    Dim Center As Variant
    Set acadApp = CreateObject("AutoCAD.Application")
    Center = Array(0#, 0#, 0#)
    acadApp.Documents.Add
    acadApp.Documents.Item(0).Activate
    acadApp.Documents.Item(0).Import "c:\test.dxf", Center, 1
    acadApp.Documents.Item(0).SaveAs "c:\test", AcSaveAsType.ac2004_dwg
    acadApp.Documents.Close
    acadApp.Quit
End Sub

Private Sub Form_Unload(Cancel As Integer)
     Set acadApp = Nothing
End Sub

Athanasios Gardos
Avax-Software.com

Page 1 of 1


Fast Reply

  

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users