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=81408 --- shadow/81408 2007-04-20 11:20:27.000000000 -0400 +++ shadow/81408.tmp.19446 2007-04-20 11:20:27.000000000 -0400 @@ -0,0 +1,51 @@ +Bug#: 81408 +Product: Mono: Class Libraries +Version: 1.0 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Pressing ENTER in a single lined textbox adds character + +Description of Problem: +If you press ENTER in a singleline textbox, an "invisible" character (a +square box) is added to the text box. +This should not happen + +Steps to reproduce the problem: +1. Compile this code using gmcs monobug.cs /r:System.Windows.Forms: +using System.Windows.Forms; + +public class Test +{ + public static void Main() + { + Form form = new Form(); + form.Controls.Add(new TextBox()); + form.ShowDialog(); + } +} + +2. mono monobug.exe +3. select the textbox and press ENTER + +Actual Results: +Square box added to the textbox + +Expected Results: +Nothing (pressing enter in this cause should do nothing) + +How often does this happen? +Always + +Additional Information: +Mono from SVN. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
