Retrieve SaveAs version in Database.BeginSave

Retrieve SaveAs version in Database.BeginSave

meichtf
Autodesk Autodesk
1,097 Views
2 Replies
Message 1 of 3

Retrieve SaveAs version in Database.BeginSave

meichtf
Autodesk
Autodesk

Is there a way to retrieve the fileversion in the Database.BeginSave event when the user has choosen like version 2004 in the default SAVEAS command?

 

I only found the OriginalFileVersion and LastSaveAsVersion property, however I have to add something in the database for version 2004 before it is saved. Or is there another approach?

 

Thank you

0 Likes
1,098 Views
2 Replies
Replies (2)
Message 2 of 3

arcticad
Advisor
Advisor

The Data is stored in the registry

HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R18.0\ACAD-8001:409\Profiles\Initial Setup Profile\General
DefaultFormatForSave

value 30 for 2010
value 24 for 2007
value 18 for 2004


This might help depending on what your doing. it will check the
file and see which version it's currently saved as.  

History of the version numbers is found here
http://en.wikipedia.org/wiki/.dwg

   Function is2010(ByVal filename As String) As Boolean
        'Return False
        'Exit Function
        Dim rtnCheck As Boolean = False

        Dim objReader As IO.StreamReader
        Dim txtContents As String
        ' Check if File Exists
        If IO.File.Exists(filename) Then
            objReader = IO.File.OpenText(filename)
            'Read all the Text in the File
            Do While objReader.Peek <> -1
                txtContents = objReader.ReadLine()
                If txtContents.Substring(0, 6) = "AC1024" Then
                    rtnCheck = True
                End If
                Exit Do
            Loop
            ' Don't forget to close the file
            objReader.Close()
            objReader = Nothing
        End If

        Return rtnCheck

    End Function

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



(defun botsbuildbots() (botsbuildbots))
0 Likes
Message 3 of 3

meichtf
Autodesk
Autodesk

Thanks for the answer but this is not quite what I'm looking for. However I would have found a solution in c++ : There is a method in the AcApDocument class:

virtual SaveFormat formatForSave() const = 0;

 

Is there a .NET property or method anywhere that I could query in the Document.BeginSave event?

0 Likes