I am creating a search box, which dynamically displays the search results as you type.For these purposes I am using an UltraTextEditor control with an UltraGrid as the drop-down control (DropDownEditorButton).Because there are different number of results on each keystroke, I would like to resize the UltraGrid to the proper size.Unfortunatelly the UltraTextEditor/DropDownEditorButton seems only to refresh the size on dropdown event.Which only happens for the first time, because I keep the results visible...How can I dynamically resize the UltraTextEditor/DropDownEditorButton's control to refresh, on each TextChange event?Regards,Mike
Hi Mike,
At this time, there is no way to dyncamically size the DropDown once it is open. You should submit this to Infragistics as a feature request:
Request a Feature or Component
Can we use an API to close the DropDown and use another API to open it again immediately? When it is re-opened, the size should be changed.
Thanks, Mike.
I will try this out.
I just tested this out and it worked fine for me:
DropDownEditorButton button = this.ultraTextEditor1.ButtonsRight[0] as DropDownEditorButton; button.CloseUp(); button.DropDown();
What event isyour code in? This will only work if the editor is in edit mode, which means the control has to have focus.
My code is DropDownEditorButton.CloseUp(); DropDownEditorButton.DropDown();
I get this error when running.
See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text **************System.InvalidOperationException: The associated editor must be in edit mode to be dropped down. at Infragistics.Win.UltraWinEditors.DropDownEditorButton.DropDown() at ESPN.DMS.TC.UI.Controls.ResourceSelectorControl.ultraButtonFind_Click(Object sender, EventArgs e) in c:\temp\Phoenix\FormsAndProviderServices\Source\Clients\CMMN\Utility\ResourceSelectorControl.cs:line 436 at System.Windows.Forms.Control.OnClick(EventArgs e) at Infragistics.Win.UltraControlBase.OnClick(EventArgs e) at Infragistics.Win.Misc.UltraButtonBase.OnClick(EventArgs e) at Infragistics.Win.Misc.UltraButton.OnMouseUp(MouseEventArgs e) at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) ************** Loaded Assemblies **************mscorlib Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll----------------------------------------TestHarness Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/TestHarness.exe----------------------------------------System.Windows.Forms Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll----------------------------------------System Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll----------------------------------------System.Drawing Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll----------------------------------------DMS.Proxy.Entity.Common Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/DMS.Proxy.Entity.Common/1.0.0.0__bdbb3667a266745c/DMS.Proxy.Entity.Common.dll----------------------------------------System.Runtime.Serialization Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll----------------------------------------AuthComponent2 Assembly Version: 3.0.0.0 Win32 Version: 3.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/AuthComponent2.DLL----------------------------------------System.Configuration Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll----------------------------------------System.Xml Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll----------------------------------------Microsoft.Web.Services3 Assembly Version: 3.0.0.0 Win32 Version: 3.0.5305.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.Web.Services3/3.0.0.0__31bf3856ad364e35/Microsoft.Web.Services3.dll----------------------------------------System.Web.Services Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll----------------------------------------DMS.Client.Framework.ApplicationFramework Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/DMS.Client.Framework.ApplicationFramework/1.0.0.0__bdbb3667a266745c/DMS.Client.Framework.ApplicationFramework.dll----------------------------------------ESPN.DMS.TC.UI.FindResources Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.FindResources.DLL----------------------------------------ESPN.DMS.TC.UI.BaseForms Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.BaseForms.DLL----------------------------------------ESPN.DMS.TC.UI.Base Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.Base.DLL----------------------------------------System.ServiceModel Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll----------------------------------------TopCoder.Util.ExceptionManager.SDE Assembly Version: 1.0.1.0 Win32 Version: 1.0.1.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.Util.ExceptionManager.SDE/1.0.1.0__b7567367622062c6/TopCoder.Util.ExceptionManager.SDE.dll----------------------------------------TopCoder.Util.ExceptionManager Assembly Version: 1.0.1.0 Win32 Version: 1.0.1.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.Util.ExceptionManager/1.0.1.0__b7567367622062c6/TopCoder.Util.ExceptionManager.dll----------------------------------------Infragistics2.Win.UltraWinStatusBar.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinStatusBar.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinStatusBar.v7.1.dll----------------------------------------Infragistics2.Win.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.v7.1.dll----------------------------------------Infragistics2.Shared.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Shared.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Shared.v7.1.dll----------------------------------------ESPN.DMS.TC.UI.Utility Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.Utility.DLL----------------------------------------Infragistics2.Win.UltraWinToolbars.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinToolbars.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinToolbars.v7.1.dll----------------------------------------Infragistics2.Win.Misc.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.Misc.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.Misc.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinEditors.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinEditors.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinEditors.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinGrid.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinGrid.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinGrid.v7.1.dll----------------------------------------System.Design Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll----------------------------------------Accessibility Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll----------------------------------------TopCoder.WinForms.Validator Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.WinForms.Validator/1.0.0.0__b7567367622062c6/TopCoder.WinForms.Validator.dll----------------------------------------DMS.Proxy.ApplicationHost Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/DMS.Proxy.ApplicationHost.DLL----------------------------------------SMDiagnostics Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/SMDiagnostics/3.0.0.0__b77a5c561934e089/SMDiagnostics.dll----------------------------------------TopCoder.Services.WCF Assembly Version: 1.0.2.0 Win32 Version: 1.0.2.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.Services.WCF/1.0.2.0__b7567367622062c6/TopCoder.Services.WCF.dll----------------------------------------System.Web Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll----------------------------------------System.WorkflowServices Assembly Version: 3.5.0.0 Win32 Version: 3.5.0594.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.WorkflowServices/3.5.0.0__31bf3856ad364e35/System.WorkflowServices.dll----------------------------------------System.ServiceModel.Web Assembly Version: 3.5.0.0 Win32 Version: 3.5.0594.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll----------------------------------------Microsoft.VisualStudio.Diagnostics.ServiceModelSink Assembly Version: 3.0.0.0 Win32 Version: 9.0.21022.8 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio.Diagnostics.ServiceModelSink/3.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll----------------------------------------System.IdentityModel Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll----------------------------------------Microsoft.Transactions.Bridge Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.Transactions.Bridge/3.0.0.0__b03f5f7f11d50a3a/Microsoft.Transactions.Bridge.dll----------------------------------------System.Transactions Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll----------------------------------------System.EnterpriseServices Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll----------------------------------------System.Data Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll----------------------------------------ESPN.DMS.TC.UI.Equipment Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.Equipment.DLL----------------------------------------Infragistics2.Win.UltraWinTabControl.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinTabControl.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinTabControl.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinExplorerBar.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinExplorerBar.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinExplorerBar.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinDock.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinDock.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinDock.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinCalcManager.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinCalcManager.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinCalcManager.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinDataSource.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinDataSource.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinDataSource.v7.1.dll----------------------------------------Microsoft.VisualBasic Assembly Version: 8.0.0.0 Win32 Version: 8.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll----------------------------------------TopCoder.UI.Navigation Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.UI.Navigation/1.0.0.0__b7567367622062c6/TopCoder.UI.Navigation.dll----------------------------------------ESPN.DMS.TC.UI.People Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.People.DLL----------------------------------------Infragistics2.Win.UltraWinSchedule.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinSchedule.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinSchedule.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinSpellChecker.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinSpellChecker.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinSpellChecker.v7.1.dll---------------------------------------- ************** JIT Debugging **************To enable just-in-time (JIT) debugging, the .config file for thisapplication or computer (machine.config) must have thejitDebugging value set in the system.windows.forms section.The application must also be compiled with debuggingenabled. For example: <configuration> <system.windows.forms jitDebugging="true" /></configuration> When JIT debugging is enabled, any unhandled exceptionwill be sent to the JIT debugger registered on the computerrather than be handled by this dialog box.
See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************System.InvalidOperationException: The associated editor must be in edit mode to be dropped down. at Infragistics.Win.UltraWinEditors.DropDownEditorButton.DropDown() at ESPN.DMS.TC.UI.Controls.ResourceSelectorControl.ultraButtonFind_Click(Object sender, EventArgs e) in c:\temp\Phoenix\FormsAndProviderServices\Source\Clients\CMMN\Utility\ResourceSelectorControl.cs:line 436 at System.Windows.Forms.Control.OnClick(EventArgs e) at Infragistics.Win.UltraControlBase.OnClick(EventArgs e) at Infragistics.Win.Misc.UltraButtonBase.OnClick(EventArgs e) at Infragistics.Win.Misc.UltraButton.OnMouseUp(MouseEventArgs e) at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************mscorlib Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll----------------------------------------TestHarness Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/TestHarness.exe----------------------------------------System.Windows.Forms Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll----------------------------------------System Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll----------------------------------------System.Drawing Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll----------------------------------------DMS.Proxy.Entity.Common Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/DMS.Proxy.Entity.Common/1.0.0.0__bdbb3667a266745c/DMS.Proxy.Entity.Common.dll----------------------------------------System.Runtime.Serialization Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll----------------------------------------AuthComponent2 Assembly Version: 3.0.0.0 Win32 Version: 3.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/AuthComponent2.DLL----------------------------------------System.Configuration Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll----------------------------------------System.Xml Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll----------------------------------------Microsoft.Web.Services3 Assembly Version: 3.0.0.0 Win32 Version: 3.0.5305.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.Web.Services3/3.0.0.0__31bf3856ad364e35/Microsoft.Web.Services3.dll----------------------------------------System.Web.Services Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll----------------------------------------DMS.Client.Framework.ApplicationFramework Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/DMS.Client.Framework.ApplicationFramework/1.0.0.0__bdbb3667a266745c/DMS.Client.Framework.ApplicationFramework.dll----------------------------------------ESPN.DMS.TC.UI.FindResources Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.FindResources.DLL----------------------------------------ESPN.DMS.TC.UI.BaseForms Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.BaseForms.DLL----------------------------------------ESPN.DMS.TC.UI.Base Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.Base.DLL----------------------------------------System.ServiceModel Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll----------------------------------------TopCoder.Util.ExceptionManager.SDE Assembly Version: 1.0.1.0 Win32 Version: 1.0.1.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.Util.ExceptionManager.SDE/1.0.1.0__b7567367622062c6/TopCoder.Util.ExceptionManager.SDE.dll----------------------------------------TopCoder.Util.ExceptionManager Assembly Version: 1.0.1.0 Win32 Version: 1.0.1.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.Util.ExceptionManager/1.0.1.0__b7567367622062c6/TopCoder.Util.ExceptionManager.dll----------------------------------------Infragistics2.Win.UltraWinStatusBar.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinStatusBar.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinStatusBar.v7.1.dll----------------------------------------Infragistics2.Win.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.v7.1.dll----------------------------------------Infragistics2.Shared.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Shared.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Shared.v7.1.dll----------------------------------------ESPN.DMS.TC.UI.Utility Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.Utility.DLL----------------------------------------Infragistics2.Win.UltraWinToolbars.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinToolbars.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinToolbars.v7.1.dll----------------------------------------Infragistics2.Win.Misc.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.Misc.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.Misc.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinEditors.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinEditors.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinEditors.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinGrid.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinGrid.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinGrid.v7.1.dll----------------------------------------System.Design Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll----------------------------------------Accessibility Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll----------------------------------------TopCoder.WinForms.Validator Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.WinForms.Validator/1.0.0.0__b7567367622062c6/TopCoder.WinForms.Validator.dll----------------------------------------DMS.Proxy.ApplicationHost Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/DMS.Proxy.ApplicationHost.DLL----------------------------------------SMDiagnostics Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/SMDiagnostics/3.0.0.0__b77a5c561934e089/SMDiagnostics.dll----------------------------------------TopCoder.Services.WCF Assembly Version: 1.0.2.0 Win32 Version: 1.0.2.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.Services.WCF/1.0.2.0__b7567367622062c6/TopCoder.Services.WCF.dll----------------------------------------System.Web Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll----------------------------------------System.WorkflowServices Assembly Version: 3.5.0.0 Win32 Version: 3.5.0594.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.WorkflowServices/3.5.0.0__31bf3856ad364e35/System.WorkflowServices.dll----------------------------------------System.ServiceModel.Web Assembly Version: 3.5.0.0 Win32 Version: 3.5.0594.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll----------------------------------------Microsoft.VisualStudio.Diagnostics.ServiceModelSink Assembly Version: 3.0.0.0 Win32 Version: 9.0.21022.8 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio.Diagnostics.ServiceModelSink/3.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll----------------------------------------System.IdentityModel Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll----------------------------------------Microsoft.Transactions.Bridge Assembly Version: 3.0.0.0 Win32 Version: 3.0.4506.648 (Winfxred.004506-0648) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.Transactions.Bridge/3.0.0.0__b03f5f7f11d50a3a/Microsoft.Transactions.Bridge.dll----------------------------------------System.Transactions Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll----------------------------------------System.EnterpriseServices Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll----------------------------------------System.Data Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll----------------------------------------ESPN.DMS.TC.UI.Equipment Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.Equipment.DLL----------------------------------------Infragistics2.Win.UltraWinTabControl.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinTabControl.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinTabControl.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinExplorerBar.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinExplorerBar.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinExplorerBar.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinDock.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinDock.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinDock.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinCalcManager.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinCalcManager.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinCalcManager.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinDataSource.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinDataSource.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinDataSource.v7.1.dll----------------------------------------Microsoft.VisualBasic Assembly Version: 8.0.0.0 Win32 Version: 8.0.50727.1433 (REDBITS.050727-1400) CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll----------------------------------------TopCoder.UI.Navigation Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/TopCoder.UI.Navigation/1.0.0.0__b7567367622062c6/TopCoder.UI.Navigation.dll----------------------------------------ESPN.DMS.TC.UI.People Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/temp/Phoenix/FormsAndProviderServices/Build/Bin/Debug/Client/ESPN.DMS.TC.UI.People.DLL----------------------------------------Infragistics2.Win.UltraWinSchedule.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinSchedule.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinSchedule.v7.1.dll----------------------------------------Infragistics2.Win.UltraWinSpellChecker.v7.1 Assembly Version: 7.1.20071.1055 Win32 Version: 7.1.20071.1055 CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Infragistics2.Win.UltraWinSpellChecker.v7.1/7.1.20071.1055__7dd5c3163f2cd0cb/Infragistics2.Win.UltraWinSpellChecker.v7.1.dll----------------------------------------
************** JIT Debugging **************To enable just-in-time (JIT) debugging, the .config file for thisapplication or computer (machine.config) must have thejitDebugging value set in the system.windows.forms section.The application must also be compiled with debuggingenabled.
For example:
<configuration> <system.windows.forms jitDebugging="true" /></configuration>
When JIT debugging is enabled, any unhandled exceptionwill be sent to the JIT debugger registered on the computerrather than be handled by this dialog box.
Yes, I beleive you can. There are DropDown and CloseUp methods on the DropDownEditorButton. So you can get the button from the ButtonsRight (or ButtonsLeft) collection and then cast it to a DropDownEditorButton and call CloseUp and DropDown.