<?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 Inspector (arx) cool features in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366699#M56894</link>
    <description>&lt;P&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;I have been using the arx application "inspector.arx" and i noticed some cool features this app has:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;1. Inspector doesn't steal focus from autocad when the refresh button is clicked. Generally inspector doesn't steal focus.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;2. Inspector can be docked like a palette&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;3. Autocad is always active when the mouse leaves the inspector form.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Is it possible to create an app with .net with similar features? Imagine a form with buttons, labels, listviews... etc.&lt;BR /&gt;Can anyone provide some tips or guidance to achieve that?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Sun, 11 Mar 2012 19:28:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-03-11T19:28:34Z</dc:date>
    <item>
      <title>Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366699#M56894</link>
      <description>&lt;P&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;I have been using the arx application "inspector.arx" and i noticed some cool features this app has:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;1. Inspector doesn't steal focus from autocad when the refresh button is clicked. Generally inspector doesn't steal focus.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;2. Inspector can be docked like a palette&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;3. Autocad is always active when the mouse leaves the inspector form.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Is it possible to create an app with .net with similar features? Imagine a form with buttons, labels, listviews... etc.&lt;BR /&gt;Can anyone provide some tips or guidance to achieve that?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2012 19:28:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366699#M56894</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-11T19:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366721#M56895</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; Is it possible to create an app with .net with similar features? Imagine a form&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;That's imho the difference, you are speaking from a Windows-Form-object, but not from a palette-/paletteset-object. Make custom controls instead of Windows-Forms and place these on PaletteSet-objects. Makes all much easier, not just focus.&lt;/P&gt;&lt;P&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2007/07/using-a-palette.html" target="_self"&gt;&amp;gt;&amp;gt;&amp;gt;here&amp;lt;&amp;lt;&amp;lt;&lt;/A&gt; is a sample done by Kean Walmsley.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2012 20:09:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366721#M56895</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2012-03-11T20:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366769#M56896</link>
      <description>&lt;P&gt;Hi Alfred, I follow Kean's blog. He's done great job. I also tried palette but had problem with comboboxes. I use API version 17.2. Also when using a palette, you have to use custom controls to make them not stealing focus:&lt;/P&gt;&lt;PRE&gt;Public Class myButton
    Inherits Windows.Forms.Button

    Public Sub New()
        MyBase.New()
        SetStyle(Windows.Forms.ControlStyles.Selectable, False)
    End Sub
&lt;BR /&gt;End Class&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I even tried using&amp;nbsp; the&amp;nbsp; ToolStripDropDown class. What i want is a smooth back n forth from a modeless form to autocad application. Creating your own commands is cool but you can't remember 100 commands... Instead you can create a form with buttons, settings and stuff.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2012 21:40:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366769#M56896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-11T21:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366773#M56897</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; Kean's blog. He's done great job&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Yes!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; but had problem with comboboxes&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Correct, but I thought this workaround was not necessary since working base on Framework 3.5. But I'm not sure about this at the moment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; What i want is a smooth back n forth from a modeless form to autocad application. &lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;FONT color="#666699"&gt;&amp;gt;&amp;gt; Creating your own commands is cool but you can't remember 100 commands.&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Forms will ever be a bit more work to sync the focus, the mouse/cursor, the visible or hidden (or minimized) mode with the AutoCAD-application window.&lt;/P&gt;&lt;P&gt;What I don't understand is the "100 commands" message? You can also place buttons on your usercontrol (on your palette) and that can start everything without needing any commands defined.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2012 21:52:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366773#M56897</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2012-03-11T21:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366793#M56898</link>
      <description>&lt;P&gt;I just want to mention that a UI is the best solution when you create lots of commands. Something i noticed in inspector is that when it is clicked autocad doen't lose focus. Inspector looks like a form. I hope for some guidance to create a form with similar features. By the way is there any workaround for the combobox glitch?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2012 22:25:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366793#M56898</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-11T22:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366899#M56899</link>
      <description>&lt;P&gt;Trap the MouseEnter/MouseLeave events of your pallet and set the KeepFocus property. Always worked for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HomeBoy Out&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2012 02:14:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3366899#M56899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-12T02:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Inspector (arx) cool features</title>
      <link>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3367179#M56900</link>
      <description>&lt;P&gt;Hi Homeboy, I have tried KeepFocus but no trapping the events. Do you mean creating a new class that inherits paletteset and overriding these two events?&amp;nbsp; When the events fire i change the KeepFocus propertie?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2012 10:07:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/inspector-arx-cool-features/m-p/3367179#M56900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-12T10:07:18Z</dc:date>
    </item>
  </channel>
</rss>

