<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Get short-cuts - open in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3635180#M53724</link>
    <description>&lt;P&gt;Ty for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the registry key that contains the shortcuts in 'OPEN' looks something like this for AutoCAD2009:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R17.2\ACAD-7005:409\Profiles\&amp;lt;&amp;lt;Profile&amp;gt;&amp;gt;\Dialogs\AllAnavDialogs&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;R17.2 means it is AutoCAD2009, which you can get with the code you suggested. &lt;FONT size="2"&gt;But what does &lt;U&gt;&lt;STRONG&gt;"ACAD-7005:409"&lt;/STRONG&gt;&lt;/U&gt; stand for?&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Sep 2012 18:27:57 GMT</pubDate>
    <dc:creator>Ertqwa</dc:creator>
    <dc:date>2012-09-26T18:27:57Z</dc:date>
    <item>
      <title>Get short-cuts - open</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3586884#M53722</link>
      <description>&lt;P&gt;Hello Forum,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you use AutoCAD's command "open", on the left side there are short-cuts. I want to retreive the names and paths of those shortcuts. How do I get them? I know they are in the registry, but the registry path is quite complicated and I fear the path will be different for other systems with other AutoCAD versions. Or is there some kind of logic to such a registry path of AutoCAD?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Aug 2012 06:53:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3586884#M53722</guid>
      <dc:creator>Ertqwa</dc:creator>
      <dc:date>2012-08-19T06:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get short-cuts - open</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3587016#M53723</link>
      <description>&lt;P&gt;Try this one&lt;/P&gt;&lt;PRE&gt;Dim appver As Object = TryCast(My.Computer.Registry.GetValue("HKEY_CURRENT_USER\Software\Autodesk\AutoCAD", "CurVer", Nothing), Object)
        If appver IsNot Nothing Then
            MsgBox("you have " + "Autocad.Application." + appver.ToString() + " installed")
        Else
            MsgBox("Out of luck, sorry, use your old code instead")
        End If&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000" face="arial,helvetica,sans-serif"&gt;~'J'~&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Aug 2012 19:04:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3587016#M53723</guid>
      <dc:creator>Hallex</dc:creator>
      <dc:date>2012-08-19T19:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Get short-cuts - open</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3635180#M53724</link>
      <description>&lt;P&gt;Ty for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the registry key that contains the shortcuts in 'OPEN' looks something like this for AutoCAD2009:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R17.2\ACAD-7005:409\Profiles\&amp;lt;&amp;lt;Profile&amp;gt;&amp;gt;\Dialogs\AllAnavDialogs&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;R17.2 means it is AutoCAD2009, which you can get with the code you suggested. &lt;FONT size="2"&gt;But what does &lt;U&gt;&lt;STRONG&gt;"ACAD-7005:409"&lt;/STRONG&gt;&lt;/U&gt; stand for?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2012 18:27:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3635180#M53724</guid>
      <dc:creator>Ertqwa</dc:creator>
      <dc:date>2012-09-26T18:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Get short-cuts - open</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3638698#M53725</link>
      <description>&lt;P&gt;Please refer to this for the details on ProductID and LocaleID :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&amp;amp;id=9120436&amp;amp;linkID=9240617" target="_blank"&gt;http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&amp;amp;id=9120436&amp;amp;linkID=9240617&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2006/09/automatic_loadi.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2006/09/automatic_loadi.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2012 14:32:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3638698#M53725</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2012-09-28T14:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Get short-cuts - open</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3639018#M53726</link>
      <description>&lt;P&gt;Great, ty!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2012 17:35:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-short-cuts-open/m-p/3639018#M53726</guid>
      <dc:creator>Ertqwa</dc:creator>
      <dc:date>2012-09-28T17:35:15Z</dc:date>
    </item>
  </channel>
</rss>

