C# GUI handle problems on close - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:44:17Z http://stackoverflow.com/feeds/question/762742 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close 0 C# GUI handle problems on close acidzombie24 2009-04-18T02:12:03Z 2009-04-18T02:42:43Z <p>I get a System.InvalidOperationException error when i close my app before the search is done. When i close on Form1_FormClosing i tell all my threads to abort. In one thread it has finalize which calls a delegate function which tells one of the controls in the form to change its text. When that happens I get the exception above along with "Additional information: Invoke or BeginInvoke cannot be called on a control until the window handle has been created."</p> <p>What can i do to correct this? i could add a isClosing flag and check it before updating the text but that feels like a hack and masking the problem. How do i correctly solve this?</p> http://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close/762759#762759 1 Answer by Samuel for C# GUI handle problems on close Samuel 2009-04-18T02:34:55Z 2009-04-18T02:34:55Z <p>This is happening because the managed control is being disposed and no longer has its handle, but you haven't closed the window yet so you still see it.</p> <p>You could create a function that would wrap the <code>Invoke</code> call and would check for <code>IsHandleCreated</code> before calling <code>Invoke</code>. If <code>IsHandleCreated</code> is false, you cannot call <code>Invoke</code> and you can just ignore the call.</p> <pre><code>public static class ControlExtensions { public static TResult InvokeEx&lt;TControl, TResult&gt;(this TControl control, Func&lt;TControl, TResult&gt; func) where TControl : Control { if (!control.IsHandleCreated) return default(T); if (control.InvokeRequired) return (TResult)control.Invoke(func, control); else return func(control); } public static void InvokeEx&lt;TControl&gt;(this TControl control, Action&lt;TControl&gt; action) where TControl : Control { control.InvokeEx(c =&gt; { action(c); return c; }); } } </code></pre> <p>So now just wrap any <code>Invoke</code>s from your threads with <code>InvokeEx</code> and it will handle when a control has been disposed and no longer has a handle.</p> <pre><code>this.InvokeEx(c =&gt; c.label1.Text = "Hello world"); </code></pre> http://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close/762773#762773 1 Answer by Bob Nadler for C# GUI handle problems on close Bob Nadler 2009-04-18T02:42:43Z 2009-04-18T02:42:43Z <p>I agree with Samuel, but would also check <code>IsDisposed</code>:</p> <pre><code>void Handler() { if (ctrl.IsDisposed || !ctrl.IsHandleCreated) return; if (ctrl.InvokeRequired) Invoke(...); else { ... } } </code></pre>