﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » WinForms (How do I?)  » Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Mon, 04 May 2026 22:06:21 GMT</lastBuildDate><ttl>20</ttl><item><title>Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20588.aspx</link><description>Hi,&lt;/P&gt;&lt;P&gt;Not for the first time I am a little confused :)&lt;/P&gt;&lt;P&gt;I have a combobox with autocomplete settings set to SuggestAppend. However,&amp;nbsp;the "append" part of the&amp;nbsp;functionality doesn't work unless IgnoreManageReadOnlyState is set to true. However, setting this property to true obviously means the combobox is not enabled/disabled based on the&amp;nbsp;BO&amp;nbsp;editingstate. If IgnoreManageReadOnlyState is set to false (the default state and in my case the desired state) then the append functionality stops working.&lt;/P&gt;&lt;P&gt;It would be great if it was possible to have the append functionality without needing IgnoreManageReadOnlyState to true.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aaron</description><pubDate>Fri, 07 Nov 2008 11:20:12 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20623.aspx</link><description>We will try your EXE alone in a bit, but we are running VS2008 SP1 Team System as well.&amp;nbsp; So I don't think that would be the issue...these types of issues are always frustrating....two different results with the same source is always irritating.</description><pubDate>Fri, 07 Nov 2008 11:20:12 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20612.aspx</link><description>Just tried building to .NET 3.5 SP1 and the problem remains. My sample project ZIP file should contain the original EXE in the Bin folder. It fails on my system but does it work on yours if you run the EXE without rebuilding it in your Visual Studio?</description><pubDate>Fri, 07 Nov 2008 10:10:01 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20611.aspx</link><description>Hi Dustin,&lt;/P&gt;&lt;P&gt;Wow - not what I was expecting at all.&lt;/P&gt;&lt;P&gt;I have Visual Studio Team System 2008. I am building against .NET 2.0 although I have .NET 3.5 SP1 installed too.&lt;/P&gt;&lt;P&gt;Aaron</description><pubDate>Fri, 07 Nov 2008 10:01:18 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20608.aspx</link><description>Howdy Aaron :),&lt;/P&gt;&lt;P&gt;I downloaded and tested out your sample. Unfortunately it looks like we are running into&amp;nbsp;the same thing I did with Doug in the post you referenced. The append functionality is working for me regardless of the manage read only state. &lt;/P&gt;&lt;P&gt;I know it might be a long shot, but what version of the .NET framework and VS IDE are you running with?&lt;/P&gt;&lt;P&gt;Thanks!</description><pubDate>Fri, 07 Nov 2008 09:11:45 GMT</pubDate><dc:creator>Dustin Taylor</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20604.aspx</link><description>Just giving this a bump&amp;nbsp;just&amp;nbsp;in case&amp;nbsp;my double posting side by side&amp;nbsp;may have&amp;nbsp;caused the sample application posting to be missed.&lt;/P&gt;&lt;P&gt;Aaron</description><pubDate>Fri, 07 Nov 2008 03:33:29 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20594.aspx</link><description>Trent, attached is a sample project linked to your sample database.&lt;/P&gt;&lt;P&gt;The form is a standard maintenance form with a products dropdown from the order item table. The products dropdown has SuggestAppend as autocomplete.&lt;/P&gt;&lt;P&gt;If you run the form without modification, IgnoreManageReadOnlyState is false. Click the Edit button and then type HL into the products combination box. Note that&amp;nbsp;the "append" functionality doesn't work. Now close the form and change the combobox's IgnoreManageReadOnlyState&amp;nbsp;to true. Run again and repeat the process. This time the append functionality works.&lt;/P&gt;&lt;P&gt;I suspect the append functionality is turned off when the control is initially disabled and is not turned back on again when the control is enabled?&lt;/P&gt;&lt;P&gt;Hope this helps.</description><pubDate>Thu, 06 Nov 2008 10:22:22 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20592.aspx</link><description>By default, our forms are in "Idle" state&amp;nbsp;and the controls are disabled to prevent users from accidently changing data. The Edit button is then used to enable the controls for data entry. This is why I like to leave IgnoreReadOnlyManageState to the default of false.&lt;/P&gt;&lt;P&gt;I was struggling as I couldn't get the combobox append functionality to work. After searching through the forums I found this thread:-&lt;/P&gt;&lt;P&gt;&lt;A href="http://forum.strataframe.net/Topic18580-7-1.aspx"&gt;http://forum.strataframe.net/Topic18580-7-1.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;downloaded Dustin's AutoCompleteTest.zip and it was only then I noticed he had IgnoreReadOnlyManageState to true. I tried it in my application and the append functionality suddenly starting working. When I set it to false append stops working.&lt;/P&gt;&lt;P&gt;On paper it looks like IgnoreReadOnlyManageState should have nothing to do with SuggestAppend but something in this setting is causing it to work.&lt;/P&gt;&lt;P&gt;The "suggest" part of the feature always works. It is the "append" part that is affected. Maybe the "append" feature is turned off when the control is disabled and it is not turned on again when the control is enabled?</description><pubDate>Thu, 06 Nov 2008 09:35:46 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item><item><title>RE: Combobox: SuggestAppend and IgnoreManageReadOnlyState</title><link>http://forum.strataframe.net/FindPost20589.aspx</link><description>Aaron, though I generally do not use the SuggestAppend, the two should not be related.&amp;nbsp; The IgnoreReadonlyManageState is used, through binding, to simply enable or disable the field based on the state of the BO.&amp;nbsp; Now in all of our applications, we never allow the fields to be disabled unless there is a security restrictions (like the StrataFlix sample).&amp;nbsp; So if this is causing an issue, more than likely there is an order of events that is causing the issue.&amp;nbsp; I will add this to a list to look at, or you could create a quick sample, but in either case, this sounds to be more related to the combo versus the binding states.&amp;nbsp; Also, just FYI, this is an inherited feature of the standard .NET combo that has not been enhanced or modified by SF (in regards to the SuggestAppend).</description><pubDate>Thu, 06 Nov 2008 09:18:12 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>