Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=80130 --- shadow/80130 2006-12-02 12:37:31.000000000 -0500 +++ shadow/80130.tmp.12820 2006-12-02 12:37:31.000000000 -0500 @@ -0,0 +1,46 @@ +Bug#: 80130 +Product: Mono: Class Libraries +Version: 1.0 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: TextBox does not select the text when the form is loaded + +Description of Problem: +TextBox does not select the text when the form is loaded + +Steps to reproduce the problem: +1. Compile and run the following program. +using System; +using System.Windows.Forms; +class TestForm : Form { + static void Main() { + Application.Run(new TestForm()); + } + public TestForm() { + TextBox TextBox = new TextBox(); + TextBox.Text = "123"; + Controls.Add(TextBox); + } +} +2. Type "4". + +Actual Results: +The text in the TextBox is "4123". + +Expected Results: +The text in the TextBox is "4". + + +How often does this happen? +Always. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
