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

    .NET

    Reply
    Mentor
    Posts: 260
    Registered: ‎01-27-2010
    Accepted Solution

    Exception on command db.database.saveas(filename,dwgcurrent.curent)

    177 Views, 2 Replies
    02-02-2012 09:46 AM

    my code :

    ...

    InfoFichier = New FileInfo(Txt)
     'enregistrement
    dwg.Database.SaveAs(Txt, DwgVersion.Current)

    'vérification si fichier existe bien !
    If InfoFichier.Exists = True Then
        dwg.CloseAndDiscard()

       ....

     

     

    i have buid with framework 3.5.

     

    This code work fine with Autocad v2010 but i have a exception with Autocad v2009. (same .dll)

    exception DwgVersion.current

     

    I have try another DwgVersion.AC1014 and other  but it  crash always on the SaveAS.

     

     

    Can you explain this  ?

     

    Thx

     

    PS : I need to have the same .DLL. (At work, i have computers on Autocad 2009 and v2010). And i dont know how to programm ths VS project for multi buid.)

    Please use plain text.
    *Expert Elite*
    arcticad
    Posts: 1,259
    Registered: ‎06-21-2004

    Re: Exception on command db.database.saveas(filename,dwgcurrent.curent)

    02-02-2012 09:54 AM in reply to: AubelecBE

    dwg.Database.SaveAs(strDWGName, True, DwgVersion.Current, _
                                              dwg.Database.SecurityParameters)

    ---------------------------



    “We don’t have a snowball’s chance in a blast furnace of surviving this attack unless every one of our units gets into the fight right now!”
    Please use plain text.
    Mentor
    Posts: 260
    Registered: ‎01-27-2010

    Re: Exception on command db.database.saveas(filename,dwgcurrent.curent)

    02-03-2012 09:51 AM in reply to: arcticad

    Thx.

     

     

    Please use plain text.