http://bugzilla.novell.com/show_bug.cgi?id=440933
http://bugzilla.novell.com/show_bug.cgi?id=440933#c5 --- Comment #5 from James Purcell <[email protected]> 2010-01-12 01:47:38 UTC --- Test app for WM_TIMER problem as mentioned on IRC: using System; using System.Windows.Forms; static class Program { static void Main() { Form form = new Form(); TextBox textbox = new TextBox() { Text = "0" }; Timer timer = new Timer() { Enabled = true, Interval = 500 }; form.Controls.Add(textbox); timer.Tick += (sender, e) => { textbox.Text = (Int32.Parse(textbox.Text) + 1).ToString(); }; Application.Run(form); } } -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
