[Mono-bugs] [Bug 61855][Cri] Changed - Bug running aplicattion with aditional info
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 24 Jul 2004 11:34:31 -0400 (EDT)
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 rafaelteixeirabr@hotmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=61855
--- shadow/61855 2004-07-22 16:48:01.000000000 -0400
+++ shadow/61855.tmp.6939 2004-07-24 11:34:31.000000000 -0400
@@ -529,6 +529,36 @@
Expected Results:
The expected was a simple Login Form
Thanks!
+
+------- Additional Comments From rafaelteixeirabr@hotmail.com 2004-07-24 11:34 -------
+Well by looking at the line pointed by the error message:
+
+Line 167: __ctrl.TipoTexto =
+Staff.Components.Web.TextBox+EstiloTexto.Texto;
+
+We can see clearly that the codegenerator for C# wrote the internal
+enum name in the wrong form. it should have written:
+
+__ctrl.TipoTexto = Staff.Components.Web.TextBox.EstiloTexto.Texto;
+
+Will look after it, but meanwhile you can change your component source
+code from
+
+public class TextBox ... {
+
+ public enum EstiloTexto ...
+
+into:
+
+public enum EstiloTexto ...
+
+public class TextBox ... {
+
+that probably will generate a correct line in the form
+
+__ctrl.TipoTexto = Staff.Components.Web.EstiloTexto.Texto;
+
+