See the top rated post in this thread. Click here

Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: Launch Civil 3D from double clicking DWG and NOT acad map

  1. #11
    I could stop if I wanted to
    Join Date
    2015-05
    Location
    West Des Moines
    Posts
    306
    Login to Give a bone
    0

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Quote Originally Posted by rkmcswain View Post
    .................
    Don't forget the wise words of Mark Kiker: "Don’t let a management problem become a technology problem"
    Interesting read overall but....

    Page 14: Dealing with troublemakers.
    Employ pier pressure.

    Dying over here

    On topic, Not going to lie I'm sure I also click from windows a good bit, but I know that seeing a red icon is bad and I never see it. I did tell a co-worker the other day to make sure he doesn't have that.

  2. #12
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    1

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Quote Originally Posted by rkmcswain View Post
    .................
    Don't forget the wise words of Mark Kiker: "Don’t let a management problem become a technology problem"
    ... Never will, he's had a significant impact on me personally & professionally, during a very challenging time my life:

    2018-01-26_12-03-13.png


    Cheers
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

  3. #13
    All AUGI, all the time
    Join Date
    2003-10
    Posts
    706
    Login to Give a bone
    1

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Just to make things even more fun with this topic... Turns out that the only computers in our office that actually work by double clicking from Explorer (to bring up the "blue" icon) are the ones that are still running Windows 7 and not Windows 10. The one guy who's computer IS running Windows 10 where double clicking works, was upgraded to Windows 10 from Windows 7. I'm not certain... but I'm pretty certain this has something to do with it.

  4. #14
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    0

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Interesting observation, Coolmo.

    Again, icon color aside, everything works fine using the correct product and Profile using the Registry modification above (per Autodesk's KB, using YOUR app icon's Target path + switches) in Windows 10, and is something that can be modified using REGEDIT, GPO, Netlogon Script, or even included in your Acad.lsp using Vl-Registry-Write LispFunction like so:

    Code:
    (vl-load-com)
    
    ;;; Fix DWG double-click from Explorer
    (defun c:FixDwgDc (/ key)
      (vl-registry-write
        (strcat
          (setq key
                 "HKEY_CURRENT_USER\\Software\\Autodesk\\DWGCommon\\shellex\\Apps"
          )
          "\\"
          (car (vl-registry-descendents key))
        )
        "OpenLaunch"
        "\"C:\\CAD\\FOO.bat\""                                              ; <-- Your Target value here
      )
      (princ)
    )
    
    ;;; Autorun for Acad.lsp
    (c:FixDwgDc)
    
    (princ)

    Cheers
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

  5. #15
    All AUGI, all the time
    Join Date
    2003-10
    Posts
    706
    Login to Give a bone
    0

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Thanks BlackBox
    Is that just a one time run thing where I type and run that little lisp routine once with my "target" info in it and then it'll work from there on out or is this something that needs to run from my ACAD.LSP file every time?

  6. #16
    Woo! Hoo! my 1st post
    Join Date
    2012-02
    Posts
    1
    Login to Give a bone
    0

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    As much as I agree with everyone that it should not be done this way, some battles just aren't worth fighting. I know I have bigger issues than this. I've found this to work without editing the registry.

    o Right click on a .dwg file and select Open with…>Choose another app>More Apps>Look for another app on this PC (be sure that “Always use this app to open .dwg files” is checked.)
    o Browse to the location of your Civil 3D shortcut (i.e. your desktop or C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Autodesk AutoCAD Civil 3D 2016 – English) and select Civil 3D 2016 Imperial

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

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Remember to change it every time you upgrade and don't expect those drawings you opened to be in Civil 3D's recently-used file list and your open drawing may or may not be in the current folder which can cause issues with xref paths, etc…

    All just to avoid doing it the way AutoCAD says it should be done. Surprised it took so long for someone to post the answer, hopefully gave them time to think about it at least.

  8. #18
    Member
    Join Date
    2007-10
    Location
    Chicago
    Posts
    12
    Login to Give a bone
    0

    Thumbs up Re: Launch Civil 3D from double clicking DWG and NOT acad map

    Quote Originally Posted by Tom Beauford View Post
    You've already told them how to do it correctly. If they're still lacking the mental tools to open Civil 3D I wouldn't rely them to work with it either. Fire them and when interviewing replacements have them show you they can open Civil 3D by themselves.
    I so much agree - I wish it were that simple!

  9. #19
    Woo! Hoo! my 1st post
    Join Date
    2003-02
    Posts
    1
    Login to Give a bone
    0

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    I use the Send To right click option on my mouse to open drawings with different versions and profiles, works well, I have desktop shortcuts setup with different profiles, then copy these to my Send To folder
    SendTo.png

    Keith Biggs

  10. #20
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,805
    Login to Give a bone
    0

    Default Re: Launch Civil 3D from double clicking DWG and NOT acad map

    I browsed this thread again (but did not read every single word...).

    We mostly all agree that double-clicking DWG files, will, at best, give unpredictable results.

    Ignoring the management aspect of this for a minute, did anyone figure out the technical reason WHY there might be a different colored icon and in some cases, different splash screen (sometimes I see the red AutoCAD splash screen instead of the normal C3D blue one)?

    Obviously, there has to be a technical reason behind this. Did the programmer write it to chose a random splash screen and icon color? Doubtful.
    R.K. McSwain | CAD Panacea |

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. 2011 - Launch by Double Clicking File Icons
    By saeborne in forum Revit Architecture - General
    Replies: 6
    Last Post: 2010-06-29, 06:09 PM
  2. Double Clicking dwgs - opens new ACAD...
    By DeluXe in forum AutoCAD Customization
    Replies: 3
    Last Post: 2009-09-03, 02:32 PM
  3. Windows XP - Double-clicking on DWG files - What application do you want to use...
    By crohloff.72988 in forum Operating Systems
    Replies: 10
    Last Post: 2006-09-22, 06:08 AM
  4. Lost Double Clicking ability... Please help
    By jared.84927 in forum AutoCAD General
    Replies: 5
    Last Post: 2006-03-06, 07:31 PM
  5. Default to 8.1 when double-clicking an RVT file
    By J. Grouchy in forum Revit Architecture - General
    Replies: 8
    Last Post: 2005-10-16, 02:19 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
  •