<?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: DockableWindow in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693494#M143519</link>
    <description>&lt;P&gt;Hi again, Bernhard -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I found a partial solution to the toolstrip button issue. See the following article:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;A href="http://blogs.msdn.com/b/rickbrew/archive/2006/01/09/511003.aspx" rel="nofollow" target="_blank"&gt;http://blogs.msdn.com/b/rickbrew/archive/2006/01/09/511003.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I verified that this worked in my test project.&lt;/P&gt;
&lt;P&gt;I do notice that the button tooltips are still not showing unless you activate some other window, but that's a minor issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jun 2010 15:33:13 GMT</pubDate>
    <dc:creator>jeff.pek</dc:creator>
    <dc:date>2010-06-08T15:33:13Z</dc:date>
    <item>
      <title>DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692585#M143512</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Hi! I have a problem with my DockableWindow. I have designed it as userControl and load it with show.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And now I want to use the Inventor Shortcuts for example return but it seems as they are locked by inventor.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I'm watching the KeyDown Event to on a Textboxcontrol I didn't get the event fired while pressing return. Is there an other way to turn off the ShortCuts. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks a lot&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kind Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Bernhard&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2010 05:08:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692585#M143512</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-07T05:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692647#M143513</link>
      <description>&lt;P&gt;There were issues here that got fixed before Inventor 2011 released. So, the should just work now.&lt;/P&gt;
&lt;P&gt;Is there a way that you can post your project?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2010 11:48:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692647#M143513</guid>
      <dc:creator>jeff.pek</dc:creator>
      <dc:date>2010-06-07T11:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692651#M143514</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I'm using AIP 2011 and WinXP SP3 and I'm still having this problem!?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here's my loading code for the uc:&lt;/P&gt;&lt;PRE&gt;private Inventor.DockableWindow dw;
private Tools.WorkDirBrowser.ucWorkDir dwc;

dw = m_inventorApplication.UserInterfaceManager.DockableWindows.Add(GlobalData.ID, "WorkDirControl", "Work Directory");
dwc = new Tools.WorkDirBrowser.ucWorkDir();
dw.AddChild(dwc.Handle);
dwc.Show();

dw.SetMinimumSize(100, 100);
dw.DockingState = DockingStateEnum.kDockLastKnown;
dw.Visible = true;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and in the usercontrol I'm only using one Textbox to test it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2010 11:57:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692651#M143514</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-07T11:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692715#M143515</link>
      <description>&lt;P&gt;Hi Bernhard -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not able to reproduce this. Here's a simple test add-in (in C#) that does something similar to what you're doing. Can you see if this works for you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The project doesn't auto-register; you'll need to do that manually with regasm.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2010 13:22:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692715#M143515</guid>
      <dc:creator>jeff.pek</dc:creator>
      <dc:date>2010-06-07T13:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692734#M143516</link>
      <description>&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe it is because you are using a Form an not a&amp;nbsp;Usercontrol!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because in My code&amp;nbsp; the property "private Tools.WorkDirBrowser.ucWorkDir dwc;" is a usercontrol!&lt;/P&gt;&lt;P&gt;So I'm going to try it with a form!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Bernhard&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2010 13:49:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2692734#M143516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-07T13:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693361#M143517</link>
      <description>&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are right! When I'm using a form I don't have problems with the return button! But!!!!&lt;/P&gt;&lt;P&gt;I've added a listviewcontrol and a Toolstrip! When I'm using the toostrip I have no problem! Entering the Listview the Dockable window loses it's focus and when I'm trying to use the toolbar again It doesn't work. I have to click on the Dockable Window (activate ) and then it works with the toolstrip again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I don't want to post my whole project!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2010 13:20:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693361#M143517</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-08T13:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693455#M143518</link>
      <description>&lt;P&gt;Hmmm. I see this same thing in a test project I made up. Not quite sure why this is happening.&lt;/P&gt;
&lt;P&gt;I'll tinker around a bit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have definitely seen some interaction problems between .NET controls and Inventor; I'm not sure if this falls into that category; it seems of a different type.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2010 14:55:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693455#M143518</guid>
      <dc:creator>jeff.pek</dc:creator>
      <dc:date>2010-06-08T14:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693494#M143519</link>
      <description>&lt;P&gt;Hi again, Bernhard -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I found a partial solution to the toolstrip button issue. See the following article:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;A href="http://blogs.msdn.com/b/rickbrew/archive/2006/01/09/511003.aspx" rel="nofollow" target="_blank"&gt;http://blogs.msdn.com/b/rickbrew/archive/2006/01/09/511003.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I verified that this worked in my test project.&lt;/P&gt;
&lt;P&gt;I do notice that the button tooltips are still not showing unless you activate some other window, but that's a minor issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2010 15:33:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693494#M143519</guid>
      <dc:creator>jeff.pek</dc:creator>
      <dc:date>2010-06-08T15:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693869#M143520</link>
      <description>&lt;P&gt;Hi Jeff,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks for your help, but I'm using a Toolstrip (in my VS2005 project) as BreadCrumbbar and it doesn't work!&lt;/P&gt;&lt;P&gt;I've also tried this&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" rel="nofollow" href="http://stackoverflow.com/questions/2423234/make-a-form-not-focusable-in-c"&gt;http://stackoverflow.com/questions/2423234/make-a-form-not-focusable-in-c&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But it makes no difference?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know! And in the API Help is no really good sample!?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bernhard&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2010 05:23:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693869#M143520</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-09T05:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: DockableWindow</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693968#M143521</link>
      <description>&lt;P&gt;Hi again Bernhard. I'm not sure what to tell you.&lt;/P&gt;
&lt;P&gt;If you want to send me your project, perhaps I can take a look and figure something out.&lt;/P&gt;
&lt;P&gt;You can reach me at &amp;lt;first&amp;gt;.&amp;lt;last&amp;gt;@autodesk.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2010 10:41:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/dockablewindow/m-p/2693968#M143521</guid>
      <dc:creator>jeff.pek</dc:creator>
      <dc:date>2010-06-09T10:41:03Z</dc:date>
    </item>
  </channel>
</rss>

