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

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=358229#c1





--- Comment #1 from Luke Page <[EMAIL PROTECTED]>  2008-02-03 04:10:39 MST ---
Reproduces a problem with now obsolete Scale function as a result of
FixedHeight being incorrectly set. A similar problem will exist with AutoScale
after 1.0

using System.Windows.Forms;
using System;
namespace tbtests {
        static class Program {
                static TextBox tb = null;

                static void Main ()
                {
                        Form form = new Form ();
                        tb = new TextBox ();
                        tb.Dock = DockStyle.Bottom;
                        tb.Height = 20;
                        tb.Multiline = true;
                        tb.Scale (10f);

                        form.Controls.Add (tb);

                        Application.Run (form);
                }
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to