<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>dotnetfireball Work Item Rss Feed</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/List.aspx</link><description>dotnetfireball Work Item Rss Description</description><item><title>Created Issue: Documentation or Examples? [10673]</title><link>http://dotnetfireball.codeplex.com/WorkItem/View.aspx?WorkItemId=10673</link><description>Hello, I need documentation or examples to use the editor in my application.&lt;br /&gt;&lt;br /&gt;Someone can tell me where can I get&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you very much&lt;br /&gt;</description><author>jaimea</author><pubDate>Tue, 22 Sep 2009 19:43:03 GMT</pubDate><guid isPermaLink="false">Created Issue: Documentation or Examples? [10673] 20090922074303P</guid></item><item><title>Created Issue: Modifying a line</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=7074</link><description>Hi,&lt;br /&gt;&lt;br /&gt;Can you help me&amp;#63;&lt;br /&gt;I have a small problem that I can not deal with FireFX2.&lt;br /&gt;I would like to modify a row in CodeEditorControl via the code but I can not.&lt;br /&gt;&lt;br /&gt;Thank you in advance for your help&lt;br /&gt;</description><author>Veler</author><pubDate>Thu, 24 Jul 2008 18:14:25 GMT</pubDate><guid isPermaLink="false">Created Issue: Modifying a line 20080724061425P</guid></item><item><title>CREATED ISSUE: Code Completion/Autolist not working properly in Syntax Editor</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5485</link><description>The current implementation of the autolist selected text and the inserttext method is not working correctly.&lt;br /&gt;First it&amp;#39;s not using the first few letters typed before CTRL&amp;#43;SPACE is hit to find the nearest item and select it.&lt;br /&gt;Secondly it&amp;#39;s not replacing the first few letters when a seletion is made.&lt;br /&gt;for example&amp;#58;&lt;br /&gt;&lt;br /&gt;the user types ins then hits ctrl&amp;#43;space, then selects INSERT from the autolist, the insert method then does this&amp;#58;&lt;br /&gt;insINSERT which is of course totally wrong.  I discovered this on the Puzzel version and checked your code to see if you had fixed it and it&amp;#39;s not been corrected, anyway, here is the fix I came up with and it works good for me.&lt;br /&gt;&lt;br /&gt;Below is what I sent to the Puzzel maintainers&amp;#58;&lt;br /&gt;&lt;br /&gt;The next problem I ran into was the code completion autolist was not working properly.&lt;br /&gt;Basicly it was not using the first few words of typing to select the closest match in the autolist box.&lt;br /&gt;&lt;br /&gt;I had to make a few mods to get this working the way I was expecting it to work first&amp;#58;&lt;br /&gt;&lt;br /&gt;protected override void OnKeyPress&amp;#40;KeyPressEventArgs e&amp;#41;&lt;br /&gt;&lt;br /&gt;which is in EditViewControl.cs. In the OnKeyPress method there the following if statement&amp;#58;&lt;br /&gt;if &amp;#40;AutoListVisible &amp;#38;&amp;#38; &amp;#33;e.Handled &amp;#38;&amp;#38; _SyntaxBox.AutoListAutoSelect&amp;#41;&lt;br /&gt;&lt;br /&gt;Which I changed to&amp;#58;&lt;br /&gt;&lt;br /&gt;if &amp;#40;AutoListVisible &amp;#38;&amp;#38; &amp;#33;e.Handled &amp;#38;&amp;#38; _SyntaxBox.AutoListAutoSelect&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;try&lt;br /&gt;&amp;#123;&lt;br /&gt;string s &amp;#61; &amp;#8220;&amp;#8221;&amp;#59;&lt;br /&gt;if &amp;#40;Caret.CurrentWord &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;s &amp;#61; Caret.CurrentWord.Text&amp;#59;&lt;br /&gt;AutoList.SelectItem&amp;#40;s&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;catch&lt;br /&gt;&amp;#123;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;It was using the X coordinate where the user initiated the autolist, and this of course was always blank, unless the user typed&lt;br /&gt;after the list was displayed and it would never grab whatever they typed before starting the autolist.&lt;br /&gt;&lt;br /&gt;The next fix involves the InsertAutolistText method in EditViewControl.cs. Again this method was not taking into account if&lt;br /&gt;the user had typed a few chars and was inserting the selection after instead of replacing it. Changed to&amp;#58;&lt;br /&gt;&lt;br /&gt;public void InsertAutolistText&amp;#40;&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;int startpos &amp;#61; 0&amp;#59;&lt;br /&gt;startpos &amp;#61; AutoListStartPos.X&amp;#59;&lt;br /&gt;&amp;#47;&amp;#47;is there a current word&amp;#63;&lt;br /&gt;if &amp;#40;Caret.CurrentWord &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;int ccol &amp;#61; Caret.CurrentWord.Column&amp;#59;&lt;br /&gt;if &amp;#40;ccol &amp;#33;&amp;#61; startpos &amp;#38;&amp;#38; Caret.CurrentWord.Text &amp;#33;&amp;#61; &amp;#8221; &amp;#8220;&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;int cwlength &amp;#61; 0&amp;#59;&lt;br /&gt;cwlength &amp;#61; Caret.CurrentWord.Text.Length&amp;#59;&lt;br /&gt;startpos &amp;#61; startpos - cwlength&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;TextRange tr &amp;#61; new TextRange&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;tr.FirstRow &amp;#61; Caret.Position.Y&amp;#59;&lt;br /&gt;tr.LastRow &amp;#61; Caret.Position.Y&amp;#59;&lt;br /&gt;tr.FirstColumn &amp;#61; startpos&amp;#59;&lt;br /&gt;tr.LastColumn &amp;#61; Caret.Position.X&amp;#59;&lt;br /&gt;Document.DeleteRange&amp;#40;tr, true&amp;#41;&amp;#59;&lt;br /&gt;Caret.Position.X &amp;#61; startpos&amp;#59;&lt;br /&gt;this.InsertText&amp;#40;AutoList.SelectedText&amp;#41;&amp;#59;&lt;br /&gt;SetFocus&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;</description><author>tcaduto</author><pubDate>Fri, 22 Feb 2008 15:18:24 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Code Completion/Autolist not working properly in Syntax Editor 20080222031824P</guid></item><item><title>COMMENTED ISSUE: Problems with Outlook bar</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5142</link><description>Hi, &lt;br /&gt;&lt;br /&gt;I am using Outlook bar in my &amp;#40;vb.net&amp;#41; project, I must say that I really like it, however I run into few problems that are really annoying. &lt;br /&gt;&lt;br /&gt;I am using version 2.0.0.48 of Fireball.Windows.Forms.dll.&lt;br /&gt;&lt;br /&gt;1.&amp;#41; I have 5 panes in my project. When application is launched, all panes are minimized, but splitter appears if there are some items. If I will select something else&amp;#92;click on area, all items appears as supposed.&lt;br /&gt;&lt;br /&gt;2.&amp;#41; My panes are Environment, Servers, PA, Packages and Silos &amp;#40;in that order&amp;#41;. When application is run, everything is fine. Now if I click on Servers &amp;#40;second pane&amp;#41;, order is automatically changed&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;PA&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;If I select environment again, it keep order &amp;#40;which is good&amp;#41;. If I select PA, order is changed again&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;PA&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;And so it goes... When I parsed &amp;#40;clicked&amp;#41; all items, it will keep order correctly.&lt;br /&gt;&lt;br /&gt;3.&amp;#41; I click on pane button. Mouse cursor is hand. &lt;br /&gt;Now I will go to upper area &amp;#40;pane itself&amp;#41; - mouse is OK &amp;#40;normal&amp;#41;.&lt;br /&gt;&lt;br /&gt;Now I go back to pane buttons area, point my mouse &amp;#40;not click&amp;#41; on another UNSELECTED pane. Do the same, but mouse pointer is hand cursor.&lt;br /&gt;&lt;br /&gt;This is if I go around splitter. If I go through splitter &amp;#40;straight up&amp;#41;, mouse cursor will change to resize.&lt;br /&gt;&lt;br /&gt;It appears that after entering pane area, mouse cursor is not reset &amp;#40;set to default one&amp;#41;, but it will remember last state.&lt;br /&gt;&lt;br /&gt;Thanks guys for all your work, Fireball is really great &amp;#58;&amp;#41;&lt;br /&gt;&lt;br /&gt;Martin&lt;br /&gt;Comments: ** Comment from web user: dotnetfireball ** &lt;p&gt;Please send me an example with i can reproduce the problem because this not happen to me&lt;/p&gt;</description><author>dotnetfireball</author><pubDate>Sun, 10 Feb 2008 17:35:14 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Problems with Outlook bar 20080210053514P</guid></item><item><title>CREATED ISSUE: Some Bugs</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5370</link><description>Hi all,&lt;br /&gt;&lt;br /&gt;I have been testing the controls, especially the docking system, and found some bugs.&lt;br /&gt;1. When i put the DockContainer on a form and try to anchor it instead of docking i get the &amp;#34;Collection was modified after the enumerator was instantiated.&amp;#34; error.&lt;br /&gt;2. Second is when the number &amp;#40;or sum of the widths&amp;#41; of docking windows is bigger than the actual docking container the last pane or panes are not shown and it won&amp;#39;t scroll. Scrolling to the first one works. I guess the measurement are wrong.&lt;br /&gt;3. The DiscoverControl&amp;#39;s border is read-only &amp;#58;&amp;#40;&lt;br /&gt;</description><author>jkr</author><pubDate>Sat, 09 Feb 2008 16:17:52 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Some Bugs 20080209041752P</guid></item><item><title>COMMENTED ISSUE: Remove pane?</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5161</link><description>Ufff, how to remove Pane&amp;#63;&amp;#63;&lt;br /&gt;&lt;br /&gt;I am missing Pane property on DiscoverControl... Or maybe I am missing something, however is it normal that I can only add panes, but not remove&amp;#92;reorder them&amp;#63;&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Martin&lt;br /&gt;Comments: ** Comment from web user: Soulin ** &lt;p&gt;Ah, already found it, stupid me &amp;#58;&amp;#40;&lt;/p&gt;&lt;p&gt;Just select pane and hit Del... I really need to have some break &amp;#59;&amp;#41;&lt;/p&gt;</description><author>Soulin</author><pubDate>Mon, 21 Jan 2008 11:47:51 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Remove pane? 20080121114751A</guid></item><item><title>CREATED ISSUE: Remove pane?</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5161</link><description>Ufff, how to remove Pane&amp;#63;&amp;#63;&lt;br /&gt;&lt;br /&gt;I am missing Pane property on DiscoverControl... Or maybe I am missing something, however is it normal that I can only add panes, but not remove&amp;#92;reorder them&amp;#63;&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Martin&lt;br /&gt;</description><author>Soulin</author><pubDate>Mon, 21 Jan 2008 11:16:32 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Remove pane? 20080121111632A</guid></item><item><title>CREATED ISSUE: Wrong message when assigning small image to LargeImage</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5160</link><description>Hi, when you try to assign image with small size to LargeImage, error returned is not correct - it is the same as if you try to assign big image to SmallImage&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#34;SmallImage must be 16x16.&amp;#34;&lt;br /&gt;&lt;br /&gt;Message returned should be&amp;#58;&lt;br /&gt;&amp;#34;SmallImage must be 24x24.&amp;#34;&lt;br /&gt;&lt;br /&gt;To reproduce&amp;#58;&lt;br /&gt;Try to assign image to LargeImage property that have different dimensions than 24x24. &lt;br /&gt;Error message is returned &amp;#40;Property value is not valid&amp;#41;. Click on Details.&lt;br /&gt;Check message - it is saying that dimensions should be 16x16.&lt;br /&gt;&lt;br /&gt;Martin&lt;br /&gt;</description><author>Soulin</author><pubDate>Mon, 21 Jan 2008 10:05:42 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Wrong message when assigning small image to LargeImage 20080121100542A</guid></item><item><title>COMMENTED ISSUE: Problems with Outlook bar</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5142</link><description>Hi, &lt;br /&gt;&lt;br /&gt;I am using Outlook bar in my &amp;#40;vb.net&amp;#41; project, I must say that I really like it, however I run into few problems that are really annoying. &lt;br /&gt;&lt;br /&gt;I am using version 2.0.0.48 of Fireball.Windows.Forms.dll.&lt;br /&gt;&lt;br /&gt;1.&amp;#41; I have 5 panes in my project. When application is launched, all panes are minimized, but splitter appears if there are some items. If I will select something else&amp;#92;click on area, all items appears as supposed.&lt;br /&gt;&lt;br /&gt;2.&amp;#41; My panes are Environment, Servers, PA, Packages and Silos &amp;#40;in that order&amp;#41;. When application is run, everything is fine. Now if I click on Servers &amp;#40;second pane&amp;#41;, order is automatically changed&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;PA&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;If I select environment again, it keep order &amp;#40;which is good&amp;#41;. If I select PA, order is changed again&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;PA&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;And so it goes... When I parsed &amp;#40;clicked&amp;#41; all items, it will keep order correctly.&lt;br /&gt;&lt;br /&gt;3.&amp;#41; I click on pane button. Mouse cursor is hand. &lt;br /&gt;Now I will go to upper area &amp;#40;pane itself&amp;#41; - mouse is OK &amp;#40;normal&amp;#41;.&lt;br /&gt;&lt;br /&gt;Now I go back to pane buttons area, point my mouse &amp;#40;not click&amp;#41; on another UNSELECTED pane. Do the same, but mouse pointer is hand cursor.&lt;br /&gt;&lt;br /&gt;This is if I go around splitter. If I go through splitter &amp;#40;straight up&amp;#41;, mouse cursor will change to resize.&lt;br /&gt;&lt;br /&gt;It appears that after entering pane area, mouse cursor is not reset &amp;#40;set to default one&amp;#41;, but it will remember last state.&lt;br /&gt;&lt;br /&gt;Thanks guys for all your work, Fireball is really great &amp;#58;&amp;#41;&lt;br /&gt;&lt;br /&gt;Martin&lt;br /&gt;Comments: ** Comment from web user: Soulin ** &lt;p&gt;Small update - for 1.&amp;#41;, you must start clicking from Top to Bottom - from Bottom to Top it works &amp;#58;&amp;#40;&lt;/p&gt;</description><author>Soulin</author><pubDate>Mon, 21 Jan 2008 08:38:49 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Problems with Outlook bar 20080121083849A</guid></item><item><title>CREATED ISSUE: Reordering panes</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5154</link><description>Is it possible to reorder panes&amp;#63; &lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Martin&lt;br /&gt;</description><author>Soulin</author><pubDate>Sun, 20 Jan 2008 15:42:49 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Reordering panes 20080120034249P</guid></item><item><title>CREATED ISSUE: Pane.Click event not fired</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5151</link><description>Hi, &lt;br /&gt;&lt;br /&gt;I have problem - Pane.Click is not fired &amp;#58;&amp;#40;&lt;br /&gt;&lt;br /&gt;As current workaround I am monitoring DiscoverPaneChanged event, however this appears to be bug.&lt;br /&gt;&lt;br /&gt;To reproduce&amp;#58;&lt;br /&gt;&lt;br /&gt;Add pane to project.&lt;br /&gt;Create code that handles Pane.Click&lt;br /&gt;Try to click on pane - even is not triggered.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Martin&lt;br /&gt;</description><author>Soulin</author><pubDate>Sun, 20 Jan 2008 13:04:02 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Pane.Click event not fired 20080120010402P</guid></item><item><title>COMMENTED ISSUE: Problems with Outlook bar</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5142</link><description>Hi, &lt;br /&gt;&lt;br /&gt;I am using Outlook bar in my &amp;#40;vb.net&amp;#41; project, I must say that I really like it, however I run into few problems that are really annoying. &lt;br /&gt;&lt;br /&gt;I am using version 2.0.0.48 of Fireball.Windows.Forms.dll.&lt;br /&gt;&lt;br /&gt;1.&amp;#41; I have 5 panes in my project. When application is launched, all panes are minimized, but splitter appears if there are some items. If I will select something else&amp;#92;click on area, all items appears as supposed.&lt;br /&gt;&lt;br /&gt;2.&amp;#41; My panes are Environment, Servers, PA, Packages and Silos &amp;#40;in that order&amp;#41;. When application is run, everything is fine. Now if I click on Servers &amp;#40;second pane&amp;#41;, order is automatically changed&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;PA&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;If I select environment again, it keep order &amp;#40;which is good&amp;#41;. If I select PA, order is changed again&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;PA&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;And so it goes... When I parsed &amp;#40;clicked&amp;#41; all items, it will keep order correctly.&lt;br /&gt;&lt;br /&gt;3.&amp;#41; I click on pane button. Mouse cursor is hand. &lt;br /&gt;Now I will go to upper area &amp;#40;pane itself&amp;#41; - mouse is OK &amp;#40;normal&amp;#41;.&lt;br /&gt;&lt;br /&gt;Now I go back to pane buttons area, point my mouse &amp;#40;not click&amp;#41; on another UNSELECTED pane. Do the same, but mouse pointer is hand cursor.&lt;br /&gt;&lt;br /&gt;This is if I go around splitter. If I go through splitter &amp;#40;straight up&amp;#41;, mouse cursor will change to resize.&lt;br /&gt;&lt;br /&gt;It appears that after entering pane area, mouse cursor is not reset &amp;#40;set to default one&amp;#41;, but it will remember last state.&lt;br /&gt;&lt;br /&gt;Thanks guys for all your work, Fireball is really great &amp;#58;&amp;#41;&lt;br /&gt;&lt;br /&gt;Martin&lt;br /&gt;Comments: ** Comment from web user: Soulin ** &lt;p&gt;As workaround for 1.&amp;#41;, I speficy SelectedPane again and then it works...&lt;/p&gt;</description><author>Soulin</author><pubDate>Fri, 18 Jan 2008 23:16:55 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Problems with Outlook bar 20080118111655P</guid></item><item><title>COMMENTED ISSUE: Problems with Outlook bar</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5142</link><description>Hi, &lt;br /&gt;&lt;br /&gt;I am using Outlook bar in my &amp;#40;vb.net&amp;#41; project, I must say that I really like it, however I run into few problems that are really annoying. &lt;br /&gt;&lt;br /&gt;I am using version 2.0.0.48 of Fireball.Windows.Forms.dll.&lt;br /&gt;&lt;br /&gt;1.&amp;#41; I have 5 panes in my project. When application is launched, all panes are minimized, but splitter appears if there are some items. If I will select something else&amp;#92;click on area, all items appears as supposed.&lt;br /&gt;&lt;br /&gt;2.&amp;#41; My panes are Environment, Servers, PA, Packages and Silos &amp;#40;in that order&amp;#41;. When application is run, everything is fine. Now if I click on Servers &amp;#40;second pane&amp;#41;, order is automatically changed&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;PA&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;If I select environment again, it keep order &amp;#40;which is good&amp;#41;. If I select PA, order is changed again&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;PA&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;And so it goes... When I parsed &amp;#40;clicked&amp;#41; all items, it will keep order correctly.&lt;br /&gt;&lt;br /&gt;3.&amp;#41; I click on pane button. Mouse cursor is hand. &lt;br /&gt;Now I will go to upper area &amp;#40;pane itself&amp;#41; - mouse is OK &amp;#40;normal&amp;#41;.&lt;br /&gt;&lt;br /&gt;Now I go back to pane buttons area, point my mouse &amp;#40;not click&amp;#41; on another UNSELECTED pane. Do the same, but mouse pointer is hand cursor.&lt;br /&gt;&lt;br /&gt;This is if I go around splitter. If I go through splitter &amp;#40;straight up&amp;#41;, mouse cursor will change to resize.&lt;br /&gt;&lt;br /&gt;It appears that after entering pane area, mouse cursor is not reset &amp;#40;set to default one&amp;#41;, but it will remember last state.&lt;br /&gt;&lt;br /&gt;Thanks guys for all your work, Fireball is really great &amp;#58;&amp;#41;&lt;br /&gt;&lt;br /&gt;Martin&lt;br /&gt;Comments: ** Comment from web user: Soulin ** &lt;p&gt;Also one more problem - if pane is disabled, users can still click on it and select it &amp;#58;&amp;#40;&lt;/p&gt;</description><author>Soulin</author><pubDate>Fri, 18 Jan 2008 14:57:44 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Problems with Outlook bar 20080118025744P</guid></item><item><title>CREATED ISSUE: Problems with Outlook bar</title><link>http://www.codeplex.com/dotnetfireball/WorkItem/View.aspx?WorkItemId=5142</link><description>Hi, &lt;br /&gt;&lt;br /&gt;I am using Outlook bar in my &amp;#40;vb.net&amp;#41; project, I must say that I really like it, however I run into few problems that are really annoying. &lt;br /&gt;&lt;br /&gt;I am using version 2.0.0.48 of Fireball.Windows.Forms.dll.&lt;br /&gt;&lt;br /&gt;1.&amp;#41; I have 5 panes in my project. When application is launched, all panes are minimized, but splitter appears if there are some items. If I will select something else&amp;#92;click on area, all items appears as supposed.&lt;br /&gt;&lt;br /&gt;2.&amp;#41; My panes are Environment, Servers, PA, Packages and Silos &amp;#40;in that order&amp;#41;. When application is run, everything is fine. Now if I click on Servers &amp;#40;second pane&amp;#41;, order is automatically changed&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;PA&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;If I select environment again, it keep order &amp;#40;which is good&amp;#41;. If I select PA, order is changed again&amp;#58;&lt;br /&gt;Environment&lt;br /&gt;Packages&lt;br /&gt;Silos&lt;br /&gt;PA&lt;br /&gt;Servers&lt;br /&gt;&lt;br /&gt;And so it goes... When I parsed &amp;#40;clicked&amp;#41; all items, it will keep order correctly.&lt;br /&gt;&lt;br /&gt;3.&amp;#41; I click on pane button. Mouse cursor is hand. &lt;br /&gt;Now I will go to upper area &amp;#40;pane itself&amp;#41; - mouse is OK &amp;#40;normal&amp;#41;.&lt;br /&gt;&lt;br /&gt;Now I go back to pane buttons area, point my mouse &amp;#40;not click&amp;#41; on another UNSELECTED pane. Do the same, but mouse pointer is hand cursor.&lt;br /&gt;&lt;br /&gt;This is if I go around splitter. If I go through splitter &amp;#40;straight up&amp;#41;, mouse cursor will change to resize.&lt;br /&gt;&lt;br /&gt;It appears that after entering pane area, mouse cursor is not reset &amp;#40;set to default one&amp;#41;, but it will remember last state.&lt;br /&gt;&lt;br /&gt;Thanks guys for all your work, Fireball is really great &amp;#58;&amp;#41;&lt;br /&gt;&lt;br /&gt;Martin&lt;br /&gt;</description><author>Soulin</author><pubDate>Fri, 18 Jan 2008 14:08:16 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Problems with Outlook bar 20080118020816P</guid></item></channel></rss>