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

--- shadow/77882        2006-03-23 01:36:35.000000000 -0500
+++ shadow/77882.tmp.20789      2006-03-23 02:01:56.000000000 -0500
@@ -1,12 +1,12 @@
 Bug#: 77882
 Product: Mono: Class Libraries
 Version: 1.1
 OS: unknown
 OS Details: Slackware 10.1, Linux Kernel 2.6.12
-Status: NEEDINFO   
+Status: REOPENED   
 Resolution: 
 Severity: Unknown
 Priority: Minor
 Component: Windows.Forms
 AssignedTo: [EMAIL PROTECTED]                            
 ReportedBy: [EMAIL PROTECTED]               
@@ -53,6 +53,53 @@
 Explain 'renders backwards' you mean you type "ABC" and it 
 shows "CBA"? What's your locale? Are you up-to-date on libgdiplus and 
 system.drawing. This obviously usually renders the correct way.
 
 Can you attach the exact code you used and maybe a screenshot showing 
 how it is wrong on your system?
+
+------- Additional Comments From [EMAIL PROTECTED]  2006-03-23 02:01 -------
+libgdiplus is from last the last official release. System.Drawing as
+well. Before I installed this, I had the previous official release of
+mono prior to downloading this daily build.
+
+I mean text renders backward as you say, instead of ABC I get CBA.
+
+Here is my code snippet
+using System;
+using System.Drawing;
+using System.Windows.Forms;
+
+namespace TextBoxTest
+{
+       public class Form1 : System.Windows.Forms.Form
+       {
+               public Form1()
+               {
+                       InitializeComponent();
+               }
+
+               private void InitializeComponent()
+               {
+                       //
+                       //Textbox
+                       //
+                       TextBox txt = new TextBox();
+                       txt.Size = new Size(100,40);
+                       txt.Location = new Point(10,10);
+                       txt.Name = "TextBox1";
+                       txt.Multiline = true;
+                       //
+                       //Form1
+                       //
+                       this.Size = new Size(300,300);
+                       this.Controls.Add(txt);
+                       this.Name = "Form1";
+                       this.Text = "Form1";
+               }
+               static void Main() 
+               {
+                       Application.Run(new Form1());                   
+               }
+       }
+}
+
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to