save-as 2000 in 2005

Discussion in 'AutoCAD' started by The Real JD, Apr 1, 2005.

  1. The Real JD

    The Real JD Guest

    i've been searching through the help file in 2005

    is there a system variable to change the default save from 2004/5 format to
    2000?
     
    The Real JD, Apr 1, 2005
    #1
  2. The Real JD

    Daayo Guest

    Check the options dialog, there should be a selection under open & save tab
     
    Daayo, Apr 1, 2005
    #2
  3. The Real JD

    The Real JD Guest

    Thanks, but I'm aware of the dialog box... I was hoping to do it through
    lisp...
     
    The Real JD, Apr 1, 2005
    #3
  4. The Real JD

    Josh Guest

    I've used the following snippet of code in my acad.lsp to set the
    default...you'll have to figure out what to change "acr15_dwg" to for 2005
    (I don't have 2005 yet)...perhaps "acr18_dwg"?

    *snip*
    ;;set the default File SAVEAS format to be 2000 (v15)
    (setq acadObj (vlax-get-acad-object)
    acadPref (vlax-get-property acadObj 'Preferences)
    )
    (vlax-put-property
    (vlax-get-property acadPref 'OpenSave)
    'SaveAsType
    acr15_dwg
    )
    *snip*
     
    Josh, Apr 1, 2005
    #4
  5. The Real JD

    R.K. McSwain Guest

    Try this:

    (setenv "DefaultFormatForSave" "12")

    (setenv "DefaultFormatForSave" "24") to set it back to 2004 format
     
    R.K. McSwain, Apr 1, 2005
    #5
  6. The Real JD

    The Real JD Guest

    Thanks for the code gentlemen!

     
    The Real JD, Apr 1, 2005
    #6
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.