Author: pbartok
Date: 2005-04-19 16:27:43 -0400 (Tue, 19 Apr 2005)
New Revision: 43289

Modified:
   trunk/winforms/begininvoke/swf-begininvoke.cs
Log:
- Need to create the handle before using BeginInvoke


Modified: trunk/winforms/begininvoke/swf-begininvoke.cs
===================================================================
--- trunk/winforms/begininvoke/swf-begininvoke.cs       2005-04-19 19:43:43 UTC 
(rev 43288)
+++ trunk/winforms/begininvoke/swf-begininvoke.cs       2005-04-19 20:27:43 UTC 
(rev 43289)
@@ -49,6 +49,7 @@
                {
                        BeginInvokeDemo demo = new BeginInvokeDemo ();
 
+                       demo.CreateHandle();
                        ThreadStart thread_start = new ThreadStart 
(demo.UpdateLabel);  
                        Thread worker = new Thread (thread_start);
                        worker.IsBackground = true;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to