<?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 PointMonitor and AutoSnap == 37 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125768#M76237</link>
    <description>Do not know, if any of you have noticed or if it is already a known issue.&lt;BR /&gt;
&lt;BR /&gt;
When you have a command and use the PointMonitor class, and then it is &lt;BR /&gt;
changed the value of AutoSnap to 37 - The tooltip is not shown at all.&lt;BR /&gt;
&lt;BR /&gt;
That's how was designed?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks!</description>
    <pubDate>Wed, 28 Nov 2007 18:16:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-11-28T18:16:21Z</dc:date>
    <item>
      <title>PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125768#M76237</link>
      <description>Do not know, if any of you have noticed or if it is already a known issue.&lt;BR /&gt;
&lt;BR /&gt;
When you have a command and use the PointMonitor class, and then it is &lt;BR /&gt;
changed the value of AutoSnap to 37 - The tooltip is not shown at all.&lt;BR /&gt;
&lt;BR /&gt;
That's how was designed?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks!</description>
      <pubDate>Wed, 28 Nov 2007 18:16:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125768#M76237</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-28T18:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125769#M76238</link>
      <description>I solved my own question... thanks!</description>
      <pubDate>Thu, 29 Nov 2007 04:22:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125769#M76238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-29T04:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125770#M76239</link>
      <description>Luis, and the answer was ?&lt;BR /&gt;
&lt;BR /&gt;
///kwb&lt;BR /&gt;
&lt;LUIS esquivel=""&gt; wrote in message news:5787903@discussion.autodesk.com...&lt;BR /&gt;
I solved my own question... thanks!&lt;/LUIS&gt;</description>
      <pubDate>Thu, 29 Nov 2007 05:05:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125770#M76239</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-29T05:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125771#M76240</link>
      <description>By adding the following code inside of the event function:&lt;BR /&gt;
&lt;BR /&gt;
[code]&lt;BR /&gt;
                            // correccion de la variable autosnap!&lt;BR /&gt;
                            object asnap = acadApp.GetSystemVariable("AUTOSNAP");                            &lt;BR /&gt;
                            if (Convert.ToInt32(asnap).Equals(37))&lt;BR /&gt;
                            {&lt;BR /&gt;
                                object obj = 7;&lt;BR /&gt;
                                acadApp.SetSystemVariable("AUTOSNAP", obj);&lt;BR /&gt;
                            }&lt;BR /&gt;
[/code]&lt;BR /&gt;
&lt;BR /&gt;
That, way the tooltip is always shown.</description>
      <pubDate>Thu, 29 Nov 2007 05:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125771#M76240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-29T05:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125772#M76241</link>
      <description>My question was to know if this is a BUG - To me they are using the same tooltip as the one in autosnap - the problem is that why is broken if the value of autosnap is changed to 37 - when there could be other custom commands that rely on PointMonitor to provide info...</description>
      <pubDate>Thu, 29 Nov 2007 05:40:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125772#M76241</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-29T05:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125773#M76242</link>
      <description>Luis, do you really think its ok to change the &lt;BR /&gt;
user's preferences to get your program to work?&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;LUIS esquivel=""&gt; wrote in message news:5787909@discussion.autodesk.com...&lt;BR /&gt;
By adding the following code inside of the event function:&lt;BR /&gt;
&lt;BR /&gt;
[code]&lt;BR /&gt;
                            // correccion de la variable autosnap!&lt;BR /&gt;
                            object asnap = acadApp.GetSystemVariable("AUTOSNAP");                            &lt;BR /&gt;
                            if (Convert.ToInt32(asnap).Equals(37))&lt;BR /&gt;
                            {&lt;BR /&gt;
                                object obj = 7;&lt;BR /&gt;
                                acadApp.SetSystemVariable("AUTOSNAP", obj);&lt;BR /&gt;
                            }&lt;BR /&gt;
[/code]&lt;BR /&gt;
&lt;BR /&gt;
That, way the tooltip is always shown.&lt;/LUIS&gt;</description>
      <pubDate>Thu, 29 Nov 2007 09:04:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125773#M76242</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-29T09:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: PointMonitor and AutoSnap == 37</title>
      <link>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125774#M76243</link>
      <description>Tony;&lt;BR /&gt;
&lt;BR /&gt;
This is for an in-house tools.&lt;BR /&gt;
&lt;BR /&gt;
Thanks.&lt;BR /&gt;
&lt;BR /&gt;
/*&lt;BR /&gt;
Luis, do you really think its ok to change the&lt;BR /&gt;
user's preferences to get your program to work?&lt;BR /&gt;
*/</description>
      <pubDate>Thu, 29 Nov 2007 14:32:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/pointmonitor-and-autosnap-37/m-p/2125774#M76243</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-29T14:32:47Z</dc:date>
    </item>
  </channel>
</rss>

