[Mono-bugs] [Bug 334409] New: latin chr doesn't work in a winform textbox

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Oct 16 18:15:18 EDT 2007


https://bugzilla.novell.com/show_bug.cgi?id=334409

           Summary: latin chr doesn't work in a winform textbox
           Product: Mono: Class Libraries
           Version: 1.2
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Windows.Forms
        AssignedTo: mono-bugs at ximian.com
        ReportedBy: surfzoid2002 at yahoo.fr
         QAContact: mono-bugs at ximian.com
          Found By: ---


all latin char as reject by a winform textbox(see test case below, after
compile just try to type latin char in the txtbox).
Also my application is Bluetooth/obex communication, on my phone i have a dir
called "Mémoire téléphone"/ when i try to list it i have a empty string in
return (i try with a txtbox (with copy/paste) directly hard coded and so on but
niet,
if i try to set a send set path ""Mémoire téléphone"/", my phone display
error message about : "Mémoire téléphone"/ so with bad UTF8/latin
char.
The Test Case :
[quote]
// Compile command line : mcs -r:System.Windows.Forms txtboxtestcase.cs
using System.Windows.Forms;

public partial class Form1 : Form
    {
                    /// <summary>
        /// Point d'entrée principal de l'application.
        /// </summary>
        //[STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
         //   Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }

        public Form1()
        {
                        TextBox txtlatin = new TextBox();
                        txtlatin.Text = "é doesn't work!";
                        this.Controls.Add(txtlatin);
        } 
        } 


[quote]


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list