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=79495

--- shadow/79495        2006-09-25 14:24:30.000000000 -0400
+++ shadow/79495.tmp.3349       2006-09-25 14:24:30.000000000 -0400
@@ -0,0 +1,75 @@
+Bug#: 79495
+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: TextBox: If you enter text in a textbox that is longer than the width 
of the textbox the tb doesn't scroll the text to the left
+
+If you enter text in a TextBox and the text you enter is longer than the
+width of the TextBox the text doesn't scroll to the left.
+Instead the text disappears on the right side of the TextBox.
+
+Btw, no cursor is visible.
+
+Simple test case with a form and a textbox:
+
+using System;
+
+using System.Drawing;
+
+using System.Windows.Forms;
+
+
+
+namespace TextBoxScroll
+
+{
+
+       public class MainForm : Form
+
+       {
+
+               private TextBox textBox1;
+
+               public MainForm()
+
+               {
+                       textBox1 = new TextBox();
+                       textBox1.Location = new Point(112, 32);
+
+                       textBox1.Size = new Size(64, 20);
+
+                       textBox1.Text = "";
+               
+                       ClientSize = new System.Drawing.Size(292, 85);          
        
+
+                       Controls.Add(textBox1);
+
+               }
+
+               
+
+               [STAThread]
+
+               public static void Main(string[] args)
+
+               {
+
+                       Application.Run(new MainForm());
+
+               }
+
+       }
+
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to