See the top rated post in this thread. Click here

Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: What Version was a dwg drawn in?

  1. #1
    I could stop if I wanted to
    Join Date
    2006-03
    Location
    San Cristobal, Guatemal
    Posts
    439
    Login to Give a bone
    0

    Default What Version was a dwg drawn in?

    Can someone tell me how to check a drawing to see what version it was drawn in and saved as? Please advise. Thanks

  2. #2
    I could stop if I wanted to
    Join Date
    2015-10
    Location
    Colorado Springs, CO
    Posts
    369
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    When you first open a drawing it says "Opening an AutoCAD xxxx format file." Where xxxx is the year. I'm not sure of any other way.

  3. #3
    I could stop if I wanted to
    Join Date
    2006-03
    Location
    San Cristobal, Guatemal
    Posts
    439
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Quote Originally Posted by Coloradomrg View Post
    When you first open a drawing it says "Opening an AutoCAD xxxx format file." Where xxxx is the year. I'm not sure of any other way.
    Ok, that's one way but I have to use F2 to read it. Is there any other way without opening it?

  4. #4
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,420
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Open it in Notepad and read the header. You will have to open it somehow in order for a program to read the info.
    C:> ED WORKING....


    LinkedIn

  5. #5
    I could stop if I wanted to
    Join Date
    2006-03
    Location
    San Cristobal, Guatemal
    Posts
    439
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Quote Originally Posted by Ed Jobe View Post
    Open it in Notepad and read the header. You will have to open it somehow in order for a program to read the info.
    Thank you both for your answers. I will choose to use the F2 as Note pad is a bit harder to decipher.

  6. #6
    Certified AUGI Addict cadtag's Avatar
    Join Date
    2000-12
    Location
    Cairo - no, not Illinois
    Posts
    5,069
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Notepad is much simpler and faster-- the value that identifies the file version is the very beginning of the file. fer example, opening a 2011 c3d in notepad shows the character string AC1021 as the initial characters of the file.

  7. #7
    I could stop if I wanted to
    Join Date
    2006-03
    Location
    San Cristobal, Guatemal
    Posts
    439
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Quote Originally Posted by cadtag View Post
    Notepad is much simpler and faster-- the value that identifies the file version is the very beginning of the file. fer example, opening a 2011 c3d in notepad shows the character string AC1021 as the initial characters of the file.
    yes, this true that the first thing is AC1018 but deciphering the 1018 requires a cross reference unless you know what the 1018 means in laymans terms. F2 tells you right away; "Opening an AutoCAD 2004/LT 2004 format file." Thanks

  8. #8
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    1

    Default Re: What Version was a dwg drawn in?

    Try this:
    Code:
     ; Autocad version information
    ; BY: Tom Beauford - 7/11/2005
    ; Beaufordt@LeonCountyFL.gov
    ; LEON COUNTY PUBLIC WORKS SURVEY & R/W SECTION
    ; (load "ver_name.lsp") ver_name 
    ;=============================================================
    (defun c:ver_name ( / pro vlt vno strCaption)
      (setq pro (getvar "PRODUCT")
            vlt (substr (getvar "_VERNUM") 1 1)
            vno (substr (getvar "_VERNUM") 2)
            strCaption (vla-get-Caption (vlax-get-acad-object)); Thanks Matt
            newlen (vl-string-search " - [" strCaption)
            strCaption (substr strCaption 1 newlen)
      )
      (princ "\n")
      (cond
        ((= vlt "R")
          (princ(strcat pro " 13" vno))
        )
        ((= vlt "P")
          (princ(strcat pro " 14" vno))
        )
        ((= vlt "T")
          (princ(strcat pro " 2000" vno))
        )
        ((= vlt "U")
          (princ(strcat pro " 2000i" vno))
        )
        ((= vlt "K")
          (princ(strcat pro " 2002" vno))
        )
        ((= vlt "V")
          (princ(strcat strCaption " 2004" vno))
        )
        ((= vlt "N")
          (princ(strcat strCaption " 2005" vno))
        )
        ((= vlt "Z")
          (princ(strcat strCaption " 2006" vno))
        )
        (T
          (princ(strcat strCaption vno))
        )
      )
      (princ)
    )

  9. #9
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,420
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Quote Originally Posted by Tom Beauford View Post
    Try this:
    Tom, I believe he wanted the version of the file that was opened, not the current product.
    C:> ED WORKING....


    LinkedIn

  10. #10
    I could stop if I wanted to
    Join Date
    2006-03
    Location
    San Cristobal, Guatemal
    Posts
    439
    Login to Give a bone
    0

    Default Re: What Version was a dwg drawn in?

    Quote Originally Posted by Ed Jobe View Post
    Tom, I believe he wanted the version of the file that was opened, not the current product.
    Yes, what version the file was created in and last saved as.

Page 1 of 2 12 LastLast

Similar Threads

  1. Can version 2010 be saved out as version 5.5?
    By dmenke in forum NavisWorks - General
    Replies: 1
    Last Post: 2009-07-25, 01:30 AM
  2. problem opening 32 bit version with 64 bit version
    By Doug in forum Revit Architecture - General
    Replies: 1
    Last Post: 2009-01-09, 02:09 PM
  3. Standard fitting from previous version to latest version
    By ashah.200984 in forum AMEP General
    Replies: 1
    Last Post: 2008-12-18, 04:25 PM
  4. Hand drawn look
    By jparker70 in forum AutoCAD General
    Replies: 2
    Last Post: 2006-09-27, 09:53 AM
  5. AutoCAD 2007 DWG version to 2000 DWG version - File size increases
    By darin.marsden in forum AutoCAD General
    Replies: 2
    Last Post: 2006-05-17, 07:29 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •