.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Exception on command db.databas e.saveas(f ilename,dw gcurrent.c urent)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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.)
Solved! Go to Solution.
Re: Exception on command db.databas e.saveas(f ilename,dw gcurrent.c urent)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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!”
Re: Exception on command db.databas e.saveas(f ilename,dw gcurrent.c urent)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thx.
