From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 00:07:54 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 00:07:54 -0400 (EDT) Subject: [Mono-bugs] [Bug 80159][Min] Changed - DataGrid: content of cell with focus is not selected In-Reply-To: Message-ID: <20070601040754.7C4031AE50D@bugzilla.ximian.com> 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 toshok at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=80159 --- shadow/80159 2007-05-31 23:10:03.000000000 -0400 +++ shadow/80159.tmp.31848 2007-06-01 00:07:54.000000000 -0400 @@ -77,6 +77,11 @@ Little test: Click on the first cell, then on the instruction box and then on the first cell, the text won't get selected. Click on the first cell, then on the instruction box, then on the second cell, text gets selected. + +------- Additional Comments From toshok at ximian.com 2007-06-01 00:07 ------- +that's definitely part of it. I added a call to EndEdit() in +DataGrid.OnLeave, and the textbox does disappear. However, if you +click back in cell 0,0 again, the textbox reappears without selection. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 00:37:20 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 00:37:20 -0400 (EDT) Subject: [Mono-bugs] [Bug 81790][Wis] New - Anchor to Bottom Right doesn't work In-Reply-To: Message-ID: <20070601043720.2BC271AE50D@bugzilla.ximian.com> 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 albright at wesay.org. http://bugzilla.ximian.com/show_bug.cgi?id=81790 --- shadow/81790 2007-06-01 00:37:20.000000000 -0400 +++ shadow/81790.tmp.32654 2007-06-01 00:37:20.000000000 -0400 @@ -0,0 +1,43 @@ +Bug#: 81790 +Product: Mono: Class Libraries +Version: 1.2 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: albright at wesay.org +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: Anchor to Bottom Right doesn't work + +Please fill in this template when reporting a bug, unless you know what you +are doing. +Description of Problem: +I have controls that are aligned with the lower right hand corner. I am +using Anchor styles (Right and Bottom) to do so in .Net but it doesn't show +up at all. When I change the Anchor styles to Top, Left then it shows in +the proper position until I change the size and it doesn't move with the +right hand corner as is expected. + +Steps to reproduce the problem: +1. +2. +3. + +Actual Results: + + +Expected Results: + + +How often does this happen? + + +Additional Information: +I think this is a problem if you have only bottom or only right as well. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 04:19:51 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 04:19:51 -0400 (EDT) Subject: [Mono-bugs] [Bug 81791][Nor] New - The propertygrid doesn't allow editing without workaround. In-Reply-To: Message-ID: <20070601081951.C901A1AE50D@bugzilla.ximian.com> 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 mikael.modin at instrumentcontrol.se. http://bugzilla.ximian.com/show_bug.cgi?id=81791 --- shadow/81791 2007-06-01 04:19:51.000000000 -0400 +++ shadow/81791.tmp.5438 2007-06-01 04:19:51.000000000 -0400 @@ -0,0 +1,76 @@ +Bug#: 81791 +Product: Mono: Class Libraries +Version: 1.2 +OS: +OS Details: XP +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: mikael.modin at instrumentcontrol.se +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: The propertygrid doesn't allow editing without workaround. + +Description of Problem: +The PropertyGrid doesn't allow editing of members that require keyboard +input. It does change color-properties and other properties that circle +through lists but fields that require input from the keyboard can't be edited. + +Steps to reproduce the problem: +1. Create a windows form +2. Add a property grid +3. set grid.selectedObject = new Button(); or class of your choice. +4. try to edit a textfield. + +Actual Results: +The grid doesn't allow editing of members. It does change color-properties +and other properties that circle through lists but fields that require +input from the keyboard can't be edited. + +Expected Results: +To be allowed to edit fields that require keyboard input. + +How often does this happen? +Every time. + +Additional Information: +It can be worked around by putting the field in a "invisible" TabControl, +source excerpt: + +public partial class ObjectEditorForm : Form + { + delegate void tickDelegate(); + ... + Timer t = new Timer(); + public ObjectEditorForm(ref object toBeEdited) { + grid = new PropertyGrid(); + InitializeComponent(); + OldObject = toBeEdited; + newObject = toBeEdited; + + t.Tick += new EventHandler(Tick); + t.Interval = 1; + t.Enabled = true; + } + void Tick(object sender, EventArgs e) + { + if (InvokeRequired) { + BeginInvoke(new tickDelegate(initTabs)); + return; + } + initTabs(); + } + + private void initTabs() { + t.Enabled = false; + this.OnMouseClick(new MouseEventArgs(MouseButtons.Left, 1, 100, +10, 0)); + tabControl1.SelectedTab = tabPage1; + tabControl1.SelectedTab = tabPage2; + tabControl1.SelectedTab = tabPage1; + } From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 04:27:05 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 04:27:05 -0400 (EDT) Subject: [Mono-bugs] [Bug 81791][Nor] Changed - The propertygrid doesn't allow editing without workaround. In-Reply-To: Message-ID: <20070601082705.325C61AE512@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81791 --- shadow/81791 2007-06-01 04:19:51.000000000 -0400 +++ shadow/81791.tmp.5531 2007-06-01 04:27:05.000000000 -0400 @@ -1,20 +1,20 @@ Bug#: 81791 Product: Mono: Class Libraries Version: 1.2 -OS: +OS: unknown OS Details: XP Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: rolfkvinge at ya.com ReportedBy: mikael.modin at instrumentcontrol.se QAContact: mono-bugs at ximian.com -TargetMilestone: --- +TargetMilestone: 1_2 URL: Cc: Summary: The propertygrid doesn't allow editing without workaround. Description of Problem: The PropertyGrid doesn't allow editing of members that require keyboard From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 04:42:54 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 04:42:54 -0400 (EDT) Subject: [Mono-bugs] [Bug 73417][Nor] Changed - String sorting incorrect In-Reply-To: Message-ID: <20070601084254.837151AE512@bugzilla.ximian.com> 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 atsushi at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=73417 --- shadow/73417 2007-05-18 15:10:00.000000000 -0400 +++ shadow/73417.tmp.5786 2007-06-01 04:42:54.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 73417 Product: Mono: Class Libraries Version: unspecified OS: unknown OS Details: XP -Status: REOPENED -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Normal Component: CORLIB AssignedTo: atsushi at ximian.com ReportedBy: michi at zeroc.com QAContact: mono-bugs at ximian.com @@ -261,6 +261,16 @@ throwDerivedAsBase throwDerivedAsDerived throwUnknownDerivedAsBase twoElementCycle useForward --- + +------- Additional Comments From atsushi at ximian.com 2007-06-01 04:42 ------- +It must not happen. Your result looks as if managed collation were not +working. Make sure that you don't have MONO_DISABLE_MANAGED_COLLATION +environment variable. I tried the latest mono and it gave the expected +(non-ordinal) result. + +Instead of setting NEEDINFO I close this as fixed as the reopen is +very likely wrong. If the issue still really happen create another bug +report, at is a different issue. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 06:20:23 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 06:20:23 -0400 (EDT) Subject: [Mono-bugs] [Bug 80438][Nor] Changed - PropertyGrid: Setting SelectedObject to null does not have any effect In-Reply-To: Message-ID: <20070601102023.BB86C1AE512@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=80438 --- shadow/80438 2007-05-10 15:25:19.000000000 -0400 +++ shadow/80438.tmp.6989 2007-06-01 06:20:23.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 80438 Product: Mono: Class Libraries Version: 1.2 OS: GNU/Linux [Other] OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: rolfkvinge at ya.com ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com @@ -30,6 +30,9 @@ ------- Additional Comments From gert.driesen at pandora.be 2007-01-03 08:57 ------- It appears to be a problem in Control.SuspendLayout. ------- Additional Comments From gert.driesen at pandora.be 2007-01-03 08:57 ------- Forget my previous remark: wrong bug. + +------- Additional Comments From rolfkvinge at ya.com 2007-06-01 06:20 ------- +Fixed in r78401. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 06:26:21 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 06:26:21 -0400 (EDT) Subject: [Mono-bugs] [Bug 73417][Nor] Changed - String sorting incorrect In-Reply-To: Message-ID: <20070601102621.534E71AE513@bugzilla.ximian.com> 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 robertj at gmx.net. http://bugzilla.ximian.com/show_bug.cgi?id=73417 --- shadow/73417 2007-06-01 04:42:54.000000000 -0400 +++ shadow/73417.tmp.7065 2007-06-01 06:26:21.000000000 -0400 @@ -271,6 +271,11 @@ environment variable. I tried the latest mono and it gave the expected (non-ordinal) result. Instead of setting NEEDINFO I close this as fixed as the reopen is very likely wrong. If the issue still really happen create another bug report, at is a different issue. + +------- Additional Comments From robertj at gmx.net 2007-06-01 06:26 ------- +Atsushi, I can reproduce this with Mono 1.2.3.1 under MacOS/PPC. +Will try SVN HEAD later. + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 06:59:49 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 06:59:49 -0400 (EDT) Subject: [Mono-bugs] [Bug 81792][Wis] New - TextBox is drawing the text to close to the bottom when there's no borders In-Reply-To: Message-ID: <20070601105949.A2D5B1AE513@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81792 --- shadow/81792 2007-06-01 06:59:49.000000000 -0400 +++ shadow/81792.tmp.7394 2007-06-01 06:59:49.000000000 -0400 @@ -0,0 +1,38 @@ +Bug#: 81792 +Product: Mono: Class Libraries +Version: 1.0 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: rolfkvinge at ya.com +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: TextBox is drawing the text to close to the bottom when there's no borders + +MS draws the text so that it's all visible within the text area, we draw +it so that the baseline is aligned with the bottom of the text area (so +that the bottom part of letters like j, p, g, etc, get cut off). + +Repro: + +using System; +using System.Windows.Forms; + +class a { + static void Main () { + using (Form f = new Form ()) { + TextBox t = new TextBox (); + t.Text = "aiIj"; + t.BorderStyle = BorderStyle.None; + f.Controls.Add (t); + f.ShowDialog (); + } + } +} From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 07:00:43 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 07:00:43 -0400 (EDT) Subject: [Mono-bugs] [Bug 81792][Wis] Changed - TextBox is drawing the text to close to the bottom when there's no borders In-Reply-To: Message-ID: <20070601110043.7FB6C1AE513@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81792 --- shadow/81792 2007-06-01 06:59:49.000000000 -0400 +++ shadow/81792.tmp.7424 2007-06-01 07:00:43.000000000 -0400 @@ -33,6 +33,11 @@ t.BorderStyle = BorderStyle.None; f.Controls.Add (t); f.ShowDialog (); } } } + +------- Additional Comments From rolfkvinge at ya.com 2007-06-01 07:00 ------- +Created an attachment (id=19360) +Mono (Linux) screenshot + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 07:03:37 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 07:03:37 -0400 (EDT) Subject: [Mono-bugs] [Bug 81792][Wis] Changed - TextBox is drawing the text to close to the bottom when there's no borders In-Reply-To: Message-ID: <20070601110337.D90ED1AE513@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81792 --- shadow/81792 2007-06-01 07:03:21.000000000 -0400 +++ shadow/81792.tmp.7480 2007-06-01 07:03:37.000000000 -0400 @@ -43,6 +43,11 @@ ------- Additional Comments From rolfkvinge at ya.com 2007-06-01 07:03 ------- Created an attachment (id=19361) Mono (Windows) screenshot + +------- Additional Comments From rolfkvinge at ya.com 2007-06-01 07:03 ------- +Created an attachment (id=19362) +MS screenshot + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 07:03:21 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 07:03:21 -0400 (EDT) Subject: [Mono-bugs] [Bug 81792][Wis] Changed - TextBox is drawing the text to close to the bottom when there's no borders In-Reply-To: Message-ID: <20070601110321.89B481AE513@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81792 --- shadow/81792 2007-06-01 07:00:43.000000000 -0400 +++ shadow/81792.tmp.7463 2007-06-01 07:03:21.000000000 -0400 @@ -38,6 +38,11 @@ } ------- Additional Comments From rolfkvinge at ya.com 2007-06-01 07:00 ------- Created an attachment (id=19360) Mono (Linux) screenshot + +------- Additional Comments From rolfkvinge at ya.com 2007-06-01 07:03 ------- +Created an attachment (id=19361) +Mono (Windows) screenshot + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 10:02:39 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 10:02:39 -0400 (EDT) Subject: [Mono-bugs] [Bug 80159][Min] Changed - DataGrid: content of cell with focus is not selected In-Reply-To: Message-ID: <20070601140239.43E931AE512@bugzilla.ximian.com> 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 shana.ufie at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=80159 --- shadow/80159 2007-06-01 00:07:54.000000000 -0400 +++ shadow/80159.tmp.9239 2007-06-01 10:02:39.000000000 -0400 @@ -82,6 +82,10 @@ second cell, text gets selected. ------- Additional Comments From toshok at ximian.com 2007-06-01 00:07 ------- that's definitely part of it. I added a call to EndEdit() in DataGrid.OnLeave, and the textbox does disappear. However, if you click back in cell 0,0 again, the textbox reappears without selection. + +------- Additional Comments From shana.ufie at gmail.com 2007-06-01 10:02 ------- +Ok, I commited that change in rev.78405, since it obviously needs it +there to commit the changes. Let's see if I don't blow up anything :p From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 09:16:51 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 09:16:51 -0400 (EDT) Subject: [Mono-bugs] [Bug 81790][Wis] Changed - Anchor to Bottom Right doesn't work In-Reply-To: Message-ID: <20070601131651.4EE931AE512@bugzilla.ximian.com> 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 monkey at jpobst.com. http://bugzilla.ximian.com/show_bug.cgi?id=81790 --- shadow/81790 2007-06-01 00:37:20.000000000 -0400 +++ shadow/81790.tmp.8748 2007-06-01 09:16:51.000000000 -0400 @@ -1,17 +1,17 @@ Bug#: 81790 Product: Mono: Class Libraries Version: 1.2 -OS: +OS: unknown OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Wishlist Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: monkey at jpobst.com ReportedBy: albright at wesay.org QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: Anchor to Bottom Right doesn't work @@ -38,6 +38,17 @@ How often does this happen? Additional Information: I think this is a problem if you have only bottom or only right as well. + +------- Additional Comments From monkey at jpobst.com 2007-06-01 09:16 ------- +I made several fixes regarding anchoring last week and this week. +What version of Mono are you using? If you can, please test your app +with Mono from SVN. If that isn't feasible, you can grab a +System.Windows.Forms.dll from http://mono.ximian.com/daily/, however +it hasn't updated for the past few days. I will poke the guy who can +fix that to get them to start building again. + +If you still have this issue with the latest Mono, please provide a +small test case that exhibits the problem. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 12:19:53 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 12:19:53 -0400 (EDT) Subject: [Mono-bugs] [Bug 80213][Min] Changed - TextBox: Cursor caret does not blink when text is selected In-Reply-To: Message-ID: <20070601161953.28E8C1AE512@bugzilla.ximian.com> 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 shana.ufie at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=80213 --- shadow/80213 2007-06-01 10:02:39.000000000 -0400 +++ shadow/80213.tmp.10586 2007-06-01 12:19:53.000000000 -0400 @@ -12,13 +12,13 @@ ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com TargetMilestone: 1_2 URL: Cc: Summary: TextBox: Cursor caret does not blink when text is selected -OtherBugsDependingOnThis: 80159 +OtherBugsDependingOnThis: 80159[FIXED] When text is selected inside a textbox control, then the cursor caret no longer blinks. To reproduce: 1. compile and run the attached code snippet. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 12:55:40 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 12:55:40 -0400 (EDT) Subject: [Mono-bugs] [Bug 80726][Wis] Changed - Printing - PageSetup - Missing collation pictures In-Reply-To: Message-ID: <20070601165540.C24F71AE50D@bugzilla.ximian.com> 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 shana.ufie at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=80726 --- shadow/80726 2007-02-07 14:43:30.000000000 -0500 +++ shadow/80726.tmp.11119 2007-06-01 12:55:40.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 80726 Product: Mono: Class Libraries Version: unspecified OS: unknown OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Wishlist Component: Windows.Forms AssignedTo: shana.ufie at gmail.com ReportedBy: shana.ufie at gmail.com QAContact: mono-bugs at ximian.com @@ -19,6 +19,9 @@ On the Print Dialogue, the collation pictures exemplifying how the pages will come out are missing. Reproduce: run winforms/swf-printing.exe select File/Print + +------- Additional Comments From shana.ufie at gmail.com 2007-06-01 12:55 ------- +Fixed in rev. 78428 From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 12:42:16 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 12:42:16 -0400 (EDT) Subject: [Mono-bugs] [Bug 80137][Nor] Changed - [2.0] Label: AutoSize does not work for linebreaks In-Reply-To: Message-ID: <20070601164216.BABAE1AE50D@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=80137 --- shadow/80137 2006-12-04 09:20:08.000000000 -0500 +++ shadow/80137.tmp.10931 2007-06-01 12:42:16.000000000 -0400 @@ -1,23 +1,23 @@ Bug#: 80137 Product: Mono: Class Libraries Version: 1.2 OS: GNU/Linux [Other] OS Details: -Status: RESOLVED -Resolution: NOTABUG +Status: REOPENED +Resolution: Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: everaldo at simios.org ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: -Summary: Label: AutoSize does not work for linebreaks +Summary: [2.0] Label: AutoSize does not work for linebreaks Set Label.AutoSize to true does not take into account linebreaks in Label.Text. To reproduce: 1. compile and run the attached code snippet. @@ -37,6 +37,13 @@ I'm sure I had different results on win32, but that may be because I was using the Windows XP (luna) theme. I'll verify this later today. ------- Additional Comments From everaldo at simios.org 2006-12-04 09:20 ------- Added an test for sizes, if you detect some problem please change LabelTest.SizesTest, create in revision 68944. + +------- Additional Comments From gert.driesen at pandora.be 2007-06-01 12:42 ------- +Apparantly in .NET 2.0, MS does resize the height of the label when +the text contains line feeds. + +As a result, the SizesTest also fails on .NET 2.0 (but passes on .NET +1.x). From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 15:58:27 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 15:58:27 -0400 (EDT) Subject: [Mono-bugs] [Bug 80464][Nor] Changed - Column not activated in DataGrid In-Reply-To: Message-ID: <20070601195827.E18791AE50D@bugzilla.ximian.com> 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 toshok at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=80464 --- shadow/80464 2007-05-30 17:53:17.000000000 -0400 +++ shadow/80464.tmp.16011 2007-06-01 15:58:27.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 80464 Product: Mono: Class Libraries Version: 1.1 OS: unknown OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: toshok at ximian.com ReportedBy: kobruleht2 at hot.ee QAContact: mono-bugs at ximian.com @@ -56,6 +56,9 @@ SendKeys.Send("{Tab}"); return true; } return base.ProcessCmdKey(ref msg, keyData); } } + +------- Additional Comments From toshok at ximian.com 2007-06-01 15:58 ------- +fixed in svn r78450. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:23:45 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:23:45 -0400 (EDT) Subject: [Mono-bugs] [Bug 81791][Nor] Changed - The propertygrid doesn't allow editing without workaround. In-Reply-To: Message-ID: <20070601182345.F18641AE517@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81791 --- shadow/81791 2007-06-01 04:27:05.000000000 -0400 +++ shadow/81791.tmp.13185 2007-06-01 14:23:45.000000000 -0400 @@ -71,6 +71,10 @@ this.OnMouseClick(new MouseEventArgs(MouseButtons.Left, 1, 100, 10, 0)); tabControl1.SelectedTab = tabPage1; tabControl1.SelectedTab = tabPage2; tabControl1.SelectedTab = tabPage1; } + +------- Additional Comments From gert.driesen at pandora.be 2007-06-01 14:23 ------- +The problem I see is that you need to click twice before you can +actually start entering text. Is that what you're seeying too ? From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:24:45 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:24:45 -0400 (EDT) Subject: [Mono-bugs] [Bug 81797][Nor] Changed - Attribute.GetCustomAttributes doesn't get inherited attributes for properties In-Reply-To: Message-ID: <20070601172445.1AC821AE516@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81797 --- shadow/81797 2007-06-01 13:24:09.000000000 -0400 +++ shadow/81797.tmp.11633 2007-06-01 13:24:45.000000000 -0400 @@ -12,12 +12,13 @@ ReportedBy: rolfkvinge at ya.com QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: Attribute.GetCustomAttributes doesn't get inherited attributes for properties +OtherBugsDependingOnThis: 79762 Repro: using System.Reflection; using System; using System.ComponentModel; From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:00:31 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:00:31 -0400 (EDT) Subject: [Mono-bugs] [Bug 81783][Nor] Changed - Calendar.AddMonths is off by one In-Reply-To: Message-ID: <20070601170031.B1CBB1AE515@bugzilla.ximian.com> 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 atsushi at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=81783 --- shadow/81783 2007-05-31 05:09:14.000000000 -0400 +++ shadow/81783.tmp.11204 2007-06-01 13:00:31.000000000 -0400 @@ -1,14 +1,14 @@ Bug#: 81783 Product: Mono: Class Libraries Version: 1.0 OS: other OS Details: -Status: NEW -Resolution: -Severity: +Status: RESOLVED +Resolution: FIXED +Severity: Unknown Priority: Normal Component: CORLIB AssignedTo: mono-bugs at ximian.com ReportedBy: rolfkvinge at ya.com QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -35,6 +35,9 @@ Mono prints: 6/6/2004 12:00:00 AM MS prints: 6/5/2004 12:00:00 AM + +------- Additional Comments From atsushi at ximian.com 2007-06-01 13:00 ------- +Fixed in svn. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:55:02 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:55:02 -0400 (EDT) Subject: [Mono-bugs] [Bug 80159][Min] Changed - DataGrid: content of cell with focus is not selected In-Reply-To: Message-ID: <20070601175502.4F1621AE517@bugzilla.ximian.com> 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 toshok at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=80159 --- shadow/80159 2007-06-01 12:19:52.000000000 -0400 +++ shadow/80159.tmp.12714 2007-06-01 13:55:02.000000000 -0400 @@ -89,6 +89,9 @@ ------- Additional Comments From shana.ufie at gmail.com 2007-06-01 10:02 ------- Ok, I commited that change in rev.78405, since it obviously needs it there to commit the changes. Let's see if I don't blow up anything :p ------- Additional Comments From shana.ufie at gmail.com 2007-06-01 12:19 ------- Think this is it now, fixed in rev. 78426 + +------- Additional Comments From toshok at ximian.com 2007-06-01 13:55 ------- +yup, definitely fixed now. yay. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 12:35:30 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 12:35:30 -0400 (EDT) Subject: [Mono-bugs] [Bug 81796][Nor] New - PropertyGrid does not correctly change SelectedObject - it crashs In-Reply-To: Message-ID: <20070601163530.D89E41AE50D@bugzilla.ximian.com> 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 michal.kovac.develop at centrum.cz. http://bugzilla.ximian.com/show_bug.cgi?id=81796 --- shadow/81796 2007-06-01 12:35:30.000000000 -0400 +++ shadow/81796.tmp.10825 2007-06-01 12:35:30.000000000 -0400 @@ -0,0 +1,37 @@ +Bug#: 81796 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: michal.kovac.develop at centrum.cz +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: PropertyGrid does not correctly change SelectedObject - it crashs + +Description of Problem: +When you set property SelectedObject of PropertyGrid to object with +properties, then to some object without properties and after that to +object with properties, it will crash + +Steps to reproduce the problem: +1. Create application with PropertyGrid and two buttons (button1, button2) +2. Create class without any property (I will use the name TestCleanClass +for it) +3. OnLoad of Form with property grid call this: +this.propertyGrid1.SelectedObject = button1; +this.propertyGrid1.SelectedObject = new TestCleanClass(); +this.propertyGrid1.SelectedObject = button2; + +Actual Results: +The application crashs + +Expected Results: +The property grid will show properties of button2 From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:35:01 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:35:01 -0400 (EDT) Subject: [Mono-bugs] [Bug 81800][Nor] New - PropertyGrid: Text not visible until focus is list In-Reply-To: Message-ID: <20070601183501.A0E021AE50D@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81800 --- shadow/81800 2007-06-01 14:35:01.000000000 -0400 +++ shadow/81800.tmp.13384 2007-06-01 14:35:01.000000000 -0400 @@ -0,0 +1,24 @@ +Bug#: 81800 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: gert.driesen at pandora.be +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: PropertyGrid: Text not visible until focus is list + +The text of a certain property is not displayed until the focus is moved +away from that textbox. + +To reproduce: +1. compile and run the attached code snippet. +2. follow the on-screen instructions. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:16:10 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:16:10 -0400 (EDT) Subject: [Mono-bugs] [Bug 79762][Min] Changed - PropertyGrid: inherited attributes not used to determine Category In-Reply-To: Message-ID: <20070601181610.E74F71AE517@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=79762 --- shadow/79762 2007-06-01 13:24:44.000000000 -0400 +++ shadow/79762.tmp.13014 2007-06-01 14:16:10.000000000 -0400 @@ -14,6 +14,27 @@ TargetMilestone: 1_2 URL: Summary: PropertyGrid: inherited attributes not used to determine Category BugsThisDependsOn: 81797 is this even a PG bug? maybe System.ComponentModel? + +------- Additional Comments From rolfkvinge at ya.com 2007-06-01 14:16 ------- +This patch should fix this issue once #81797 is fixed: + +Index: ReflectionPropertyDescriptor.cs +=================================================================== +--- ReflectionPropertyDescriptor.cs (revision 78441) ++++ ReflectionPropertyDescriptor.cs (working copy) +@@ -54,7 +54,7 @@ + } + + public ReflectionPropertyDescriptor (PropertyInfo +info) +- : base (info.Name, +(Attribute[])info.GetCustomAttributes (true)) ++ : base (info.Name, Attribute.GetCustomAttributes +(info, true)) + { + _member = info; + _componentType = _member.DeclaringType; + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:43:13 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:43:13 -0400 (EDT) Subject: [Mono-bugs] [Bug 81800][Nor] Changed - PropertyGrid: Text not visible until focus is lost In-Reply-To: Message-ID: <20070601184313.9310C1AE50D@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81800 --- shadow/81800 2007-06-01 14:37:45.000000000 -0400 +++ shadow/81800.tmp.13555 2007-06-01 14:43:13.000000000 -0400 @@ -2,28 +2,32 @@ Product: Mono: Class Libraries Version: 1.2 OS: All OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: toshok at ximian.com ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: -Summary: PropertyGrid: Text not visible until focus is list +Summary: PropertyGrid: Text not visible until focus is lost The text of a certain property is not displayed until the focus is moved away from that textbox. To reproduce: 1. compile and run the attached code snippet. 2. follow the on-screen instructions. ------- Additional Comments From gert.driesen at pandora.be 2007-06-01 14:37 ------- Created an attachment (id=19365) Repro + +------- Additional Comments From gert.driesen at pandora.be 2007-06-01 14:43 ------- +Note: this appears to be a recent regression, since it worked fine on +one of my boxes until I updated. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:24:44 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:24:44 -0400 (EDT) Subject: [Mono-bugs] [Bug 79762][Min] Changed - PropertyGrid: inherited attributes not used to determine Category In-Reply-To: Message-ID: <20070601172444.D2E641AE50D@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=79762 --- shadow/79762 2007-05-10 15:23:55.000000000 -0400 +++ shadow/79762.tmp.11627 2007-06-01 13:24:44.000000000 -0400 @@ -11,8 +11,9 @@ AssignedTo: rolfkvinge at ya.com ReportedBy: toshok at ximian.com QAContact: mono-bugs at ximian.com TargetMilestone: 1_2 URL: Summary: PropertyGrid: inherited attributes not used to determine Category +BugsThisDependsOn: 81797 is this even a PG bug? maybe System.ComponentModel? From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:20:39 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:20:39 -0400 (EDT) Subject: [Mono-bugs] [Bug 81798][Nor] Changed - Form: Setting MaximumSize does not allow form to be resized beyond initial size In-Reply-To: Message-ID: <20070601182039.766911AE517@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81798 --- shadow/81798 2007-06-01 13:46:24.000000000 -0400 +++ shadow/81798.tmp.13117 2007-06-01 14:20:39.000000000 -0400 @@ -2,19 +2,19 @@ Product: Mono: Class Libraries Version: 1.2 OS: GNU/Linux [Other] OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: rolfkvinge at ya.com ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com -TargetMilestone: --- +TargetMilestone: 1_2 URL: Cc: Summary: Form: Setting MaximumSize does not allow form to be resized beyond initial size When MaximumSize is set, the form cannot be resized beyond its initial size even though the MaximumSize is greater than the current size. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:42:45 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:42:45 -0400 (EDT) Subject: [Mono-bugs] [Bug 81798][Nor] New - Form: Setting MaximumSize does not allow form to be resized beyond initial size In-Reply-To: Message-ID: <20070601174245.59C9B1AE50D@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81798 --- shadow/81798 2007-06-01 13:42:45.000000000 -0400 +++ shadow/81798.tmp.12347 2007-06-01 13:42:45.000000000 -0400 @@ -0,0 +1,27 @@ +Bug#: 81798 +Product: Mono: Class Libraries +Version: 1.2 +OS: GNU/Linux [Other] +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: gert.driesen at pandora.be +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: Form: Setting MaximumSize does not allow form to be resized beyond initial size + +When MaximumSize is set, the form cannot be resized beyond its initial +size even though the MaximumSize is greater than the current size. + +To reproduce: +1. compile and run the attached code snippet. +2. follow the on-screen instructions. + +Note: +It works fine on Mono/Windows. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:46:24 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:46:24 -0400 (EDT) Subject: [Mono-bugs] [Bug 81798][Nor] Changed - Form: Setting MaximumSize does not allow form to be resized beyond initial size In-Reply-To: Message-ID: <20070601174624.38EAA1AE50D@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81798 --- shadow/81798 2007-06-01 13:42:45.000000000 -0400 +++ shadow/81798.tmp.12547 2007-06-01 13:46:24.000000000 -0400 @@ -22,6 +22,11 @@ To reproduce: 1. compile and run the attached code snippet. 2. follow the on-screen instructions. Note: It works fine on Mono/Windows. + +------- Additional Comments From gert.driesen at pandora.be 2007-06-01 13:46 ------- +Created an attachment (id=19363) +Repro + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:31:46 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:31:46 -0400 (EDT) Subject: [Mono-bugs] [Bug 80137][Nor] Changed - [2.0] Label: AutoSize does not work for linebreaks In-Reply-To: Message-ID: <20070601183146.8DBEC1AE50D@bugzilla.ximian.com> 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 everaldo at simios.org. http://bugzilla.ximian.com/show_bug.cgi?id=80137 --- shadow/80137 2007-06-01 12:42:16.000000000 -0400 +++ shadow/80137.tmp.13319 2007-06-01 14:31:46.000000000 -0400 @@ -44,6 +44,10 @@ ------- Additional Comments From gert.driesen at pandora.be 2007-06-01 12:42 ------- Apparantly in .NET 2.0, MS does resize the height of the label when the text contains line feeds. As a result, the SizesTest also fails on .NET 2.0 (but passes on .NET 1.x). + +------- Additional Comments From everaldo at simios.org 2007-06-01 14:31 ------- +Test is fixed for 2.0 in r78445, now it causes error so I am fixing +Label 2.0 AutoSize. From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 13:24:09 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 13:24:09 -0400 (EDT) Subject: [Mono-bugs] [Bug 81797][Nor] New - Attribute.GetCustomAttributes doesn't get inherited attributes for properties In-Reply-To: Message-ID: <20070601172409.025BB1AE516@bugzilla.ximian.com> 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 rolfkvinge at ya.com. http://bugzilla.ximian.com/show_bug.cgi?id=81797 --- shadow/81797 2007-06-01 13:24:09.000000000 -0400 +++ shadow/81797.tmp.11599 2007-06-01 13:24:09.000000000 -0400 @@ -0,0 +1,64 @@ +Bug#: 81797 +Product: Mono: Class Libraries +Version: 1.0 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: CORLIB +AssignedTo: mono-bugs at ximian.com +ReportedBy: rolfkvinge at ya.com +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: Attribute.GetCustomAttributes doesn't get inherited attributes for properties + +Repro: + +using System.Reflection; +using System; +using System.ComponentModel; + +class b +{ + static void Main () + { + Type derived = typeof (Derived); + PropertyInfo p = derived.GetProperty ("P"); + + Console.WriteLine (p.GetCustomAttributes (true).Length); + Console.WriteLine (Attribute.GetCustomAttributes (p, +true).Length); + } + class Base + { + [DesignOnly (true)] + [Browsable (false)] + [Description ("Desc")] + [Category ("A")] + public virtual string P { + get { return null; } + set { } + } + } + + class Derived : Base + { + public override string P { + get { return null; } + set { } + } + } + +} + +MS prints: +0 +4 + +Mono prints: +0 +0 From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 15:48:58 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 15:48:58 -0400 (EDT) Subject: [Mono-bugs] [Bug 81790][Wis] Changed - Anchor to Bottom Right doesn't work In-Reply-To: Message-ID: <20070601194858.4D7F31AE50D@bugzilla.ximian.com> 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 monkey at jpobst.com. http://bugzilla.ximian.com/show_bug.cgi?id=81790 --- shadow/81790 2007-06-01 09:16:51.000000000 -0400 +++ shadow/81790.tmp.14955 2007-06-01 15:48:58.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 81790 Product: Mono: Class Libraries Version: 1.2 OS: unknown OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Wishlist Component: Windows.Forms AssignedTo: monkey at jpobst.com ReportedBy: albright at wesay.org QAContact: mono-bugs at ximian.com @@ -49,6 +49,12 @@ System.Windows.Forms.dll from http://mono.ximian.com/daily/, however it hasn't updated for the past few days. I will poke the guy who can fix that to get them to start building again. If you still have this issue with the latest Mono, please provide a small test case that exhibits the problem. + +------- Additional Comments From monkey at jpobst.com 2007-06-01 15:48 ------- +Never mind, this was caused by my change on Tuesday. Right and Bottom +anchors should work again as of r78438. + +Thanks for the report! From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 14:37:45 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 14:37:45 -0400 (EDT) Subject: [Mono-bugs] [Bug 81800][Nor] Changed - PropertyGrid: Text not visible until focus is list In-Reply-To: Message-ID: <20070601183745.E23041AE50D@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81800 --- shadow/81800 2007-06-01 14:35:01.000000000 -0400 +++ shadow/81800.tmp.13444 2007-06-01 14:37:45.000000000 -0400 @@ -19,6 +19,11 @@ The text of a certain property is not displayed until the focus is moved away from that textbox. To reproduce: 1. compile and run the attached code snippet. 2. follow the on-screen instructions. + +------- Additional Comments From gert.driesen at pandora.be 2007-06-01 14:37 ------- +Created an attachment (id=19365) +Repro + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 19:40:29 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 19:40:29 -0400 (EDT) Subject: [Mono-bugs] [Bug 81797][Nor] Changed - Attribute.GetCustomAttributes doesn't get inherited attributes for properties In-Reply-To: Message-ID: <20070601234029.E97741AE518@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81797 --- shadow/81797 2007-06-01 14:16:11.000000000 -0400 +++ shadow/81797.tmp.21870 2007-06-01 19:40:29.000000000 -0400 @@ -1,14 +1,14 @@ Bug#: 81797 Product: Mono: Class Libraries Version: 1.0 OS: other OS Details: -Status: NEW -Resolution: -Severity: +Status: RESOLVED +Resolution: FIXED +Severity: Unknown Priority: Normal Component: CORLIB AssignedTo: mono-bugs at ximian.com ReportedBy: rolfkvinge at ya.com QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -60,6 +60,10 @@ 0 4 Mono prints: 0 0 + +------- Additional Comments From vargaz at gmail.com 2007-06-01 19:40 ------- +We now print 4 in both cases. I think thats acceptable. + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 19:40:30 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 19:40:30 -0400 (EDT) Subject: [Mono-bugs] [Bug 79762][Min] Changed - PropertyGrid: inherited attributes not used to determine Category In-Reply-To: Message-ID: <20070601234030.3DDE81AE519@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=79762 --- shadow/79762 2007-06-01 14:16:10.000000000 -0400 +++ shadow/79762.tmp.21881 2007-06-01 19:40:30.000000000 -0400 @@ -11,13 +11,13 @@ AssignedTo: rolfkvinge at ya.com ReportedBy: toshok at ximian.com QAContact: mono-bugs at ximian.com TargetMilestone: 1_2 URL: Summary: PropertyGrid: inherited attributes not used to determine Category -BugsThisDependsOn: 81797 +BugsThisDependsOn: 81797[FIXED] is this even a PG bug? maybe System.ComponentModel? ------- Additional Comments From rolfkvinge at ya.com 2007-06-01 14:16 ------- This patch should fix this issue once #81797 is fixed: From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 20:04:02 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 20:04:02 -0400 (EDT) Subject: [Mono-bugs] [Bug 81797][Nor] Changed - Attribute.GetCustomAttributes doesn't get inherited attributes for properties In-Reply-To: Message-ID: <20070602000402.96A341AE518@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81797 --- shadow/81797 2007-06-01 19:40:29.000000000 -0400 +++ shadow/81797.tmp.22393 2007-06-01 20:04:02.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 81797 Product: Mono: Class Libraries Version: 1.0 OS: other OS Details: -Status: RESOLVED -Resolution: FIXED +Status: REOPENED +Resolution: Severity: Unknown Priority: Normal Component: CORLIB AssignedTo: mono-bugs at ximian.com ReportedBy: rolfkvinge at ya.com QAContact: mono-bugs at ximian.com @@ -64,6 +64,10 @@ 0 0 ------- Additional Comments From vargaz at gmail.com 2007-06-01 19:40 ------- We now print 4 in both cases. I think thats acceptable. + +------- Additional Comments From vargaz at gmail.com 2007-06-01 20:04 ------- +Reopening as the fix seems to break the build. + From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 20:04:02 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 20:04:02 -0400 (EDT) Subject: [Mono-bugs] [Bug 79762][Min] Changed - PropertyGrid: inherited attributes not used to determine Category In-Reply-To: Message-ID: <20070602000402.D7EC31AE519@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=79762 --- shadow/79762 2007-06-01 19:40:30.000000000 -0400 +++ shadow/79762.tmp.22403 2007-06-01 20:04:02.000000000 -0400 @@ -11,13 +11,13 @@ AssignedTo: rolfkvinge at ya.com ReportedBy: toshok at ximian.com QAContact: mono-bugs at ximian.com TargetMilestone: 1_2 URL: Summary: PropertyGrid: inherited attributes not used to determine Category -BugsThisDependsOn: 81797[FIXED] +BugsThisDependsOn: 81797 is this even a PG bug? maybe System.ComponentModel? ------- Additional Comments From rolfkvinge at ya.com 2007-06-01 14:16 ------- This patch should fix this issue once #81797 is fixed: From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 21:27:16 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 21:27:16 -0400 (EDT) Subject: [Mono-bugs] [Bug 81637][Nor] Changed - No javascript being generated for tag In-Reply-To: Message-ID: <20070602012716.450A31AE50D@bugzilla.ximian.com> 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 amhuhn at insightbb.com. http://bugzilla.ximian.com/show_bug.cgi?id=81637 --- shadow/81637 2007-05-15 22:25:42.000000000 -0400 +++ shadow/81637.tmp.24081 2007-06-01 21:27:16.000000000 -0400 @@ -1,14 +1,14 @@ Bug#: 81637 Product: Mono: Class Libraries Version: 1.0 -OS: +OS: unknown OS Details: Debian lenny on AMD64 dual core -Status: NEW -Resolution: -Severity: +Status: RESOLVED +Resolution: NOTABUG +Severity: Unknown Priority: Normal Component: Sys.Web AssignedTo: mhabersack at novell.com ReportedBy: amhuhn at insightbb.com QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -60,6 +60,14 @@ Additional Information: I am using the Debian packages mono-xsp2 1.2.1-2 and mono-xsp2-base 1.2.1-2. Thanks, Andy + +------- Additional Comments From amhuhn at insightbb.com 2007-06-01 21:27 ------- +I'm resolving this bug; I think my code must be missing something. +The Mono sample application displays dynamic menus on my machine +without any issues. + +Thanks, +Andy From bugzilla-daemon at bugzilla.ximian.com Fri Jun 1 21:27:46 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Fri, 1 Jun 2007 21:27:46 -0400 (EDT) Subject: [Mono-bugs] [Bug 81637][Nor] Changed - No javascript being generated for tag In-Reply-To: Message-ID: <20070602012746.3AC8E1AE50D@bugzilla.ximian.com> 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 amhuhn at insightbb.com. http://bugzilla.ximian.com/show_bug.cgi?id=81637 --- shadow/81637 2007-06-01 21:27:16.000000000 -0400 +++ shadow/81637.tmp.24102 2007-06-01 21:27:46.000000000 -0400 @@ -1,12 +1,12 @@ Bug#: 81637 Product: Mono: Class Libraries Version: 1.0 OS: unknown OS Details: Debian lenny on AMD64 dual core -Status: RESOLVED +Status: CLOSED Resolution: NOTABUG Severity: Unknown Priority: Normal Component: Sys.Web AssignedTo: mhabersack at novell.com ReportedBy: amhuhn at insightbb.com From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:29:38 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:29:38 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Maj] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070604162938.2BA621AE50D@bugzilla.ximian.com> 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 newsun at rocketmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-05-31 10:18:53.000000000 -0400 +++ shadow/81781.tmp.10605 2007-06-04 12:29:38.000000000 -0400 @@ -886,6 +886,11 @@ ------- Additional Comments From vargaz at gmail.com 2007-05-31 10:18 ------- I mean the last 10000 lines, sorry. Try 'Create a new attachment' to avoid very long comments. + +------- Additional Comments From newsun at rocketmail.com 2007-06-04 12:29 ------- +Created an attachment (id=19366) +Log file : last 10, 0000 lines + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:30:27 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:30:27 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Maj] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070604163027.E839A1AE50D@bugzilla.ximian.com> 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 newsun at rocketmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-06-04 12:29:38.000000000 -0400 +++ shadow/81781.tmp.10639 2007-06-04 12:30:27.000000000 -0400 @@ -891,6 +891,11 @@ ------- Additional Comments From newsun at rocketmail.com 2007-06-04 12:29 ------- Created an attachment (id=19366) Log file : last 10, 0000 lines + +------- Additional Comments From newsun at rocketmail.com 2007-06-04 12:30 ------- +Created an attachment (id=19367) +Function that was causing Sigabrt + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:31:26 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:31:26 -0400 (EDT) Subject: [Mono-bugs] [Bug 81801][Nor] New - EveMon fails to compile because of missing methods in MWF In-Reply-To: Message-ID: <20070604163126.2326D1AE50D@bugzilla.ximian.com> 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 skolima at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81801 --- shadow/81801 2007-06-04 12:31:26.000000000 -0400 +++ shadow/81801.tmp.10667 2007-06-04 12:31:26.000000000 -0400 @@ -0,0 +1,19 @@ +Bug#: 81801 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: skolima at gmail.com +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Summary: EveMon fails to compile because of missing methods in MWF + +Attached is a patch (against head as of today morning) with stubs for +needed missing methods in MWF. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:31:57 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:31:57 -0400 (EDT) Subject: [Mono-bugs] [Bug 81801][Nor] Changed - EveMon fails to compile because of missing methods in MWF In-Reply-To: Message-ID: <20070604163157.528241AE50D@bugzilla.ximian.com> 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 skolima at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81801 --- shadow/81801 2007-06-04 12:31:26.000000000 -0400 +++ shadow/81801.tmp.10690 2007-06-04 12:31:57.000000000 -0400 @@ -14,6 +14,11 @@ TargetMilestone: --- URL: Summary: EveMon fails to compile because of missing methods in MWF Attached is a patch (against head as of today morning) with stubs for needed missing methods in MWF. + +------- Additional Comments From skolima at gmail.com 2007-06-04 12:31 ------- +Created an attachment (id=19368) +evemon_stubs_2007-06-04 + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:35:24 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:35:24 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Maj] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070604163524.025E61AE50D@bugzilla.ximian.com> 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 newsun at rocketmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-06-04 12:30:27.000000000 -0400 +++ shadow/81781.tmp.10795 2007-06-04 12:35:24.000000000 -0400 @@ -896,6 +896,9 @@ ------- Additional Comments From newsun at rocketmail.com 2007-06-04 12:30 ------- Created an attachment (id=19367) Function that was causing Sigabrt + +------- Additional Comments From newsun at rocketmail.com 2007-06-04 12:35 ------- +Attached log file and function that is causing sigabrt. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:52:50 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:52:50 -0400 (EDT) Subject: [Mono-bugs] [Bug 81802][Nor] Changed - EveMon fails to start (after missing methods are added) In-Reply-To: Message-ID: <20070604165250.60B551AE510@bugzilla.ximian.com> 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 skolima at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81802 --- shadow/81802 2007-06-04 12:50:05.000000000 -0400 +++ shadow/81802.tmp.11360 2007-06-04 12:52:50.000000000 -0400 @@ -38,6 +38,11 @@ Always (checked on Windows through VS2005 and Linux - running EveMon binaries from http://evemon.battleclinic.com/) Additional Information: This depends on 81801 (missing methods). I will update the exception text as soon as I get back to my devel-box. + +------- Additional Comments From skolima at gmail.com 2007-06-04 12:52 ------- +Created an attachment (id=19369) +evemon-trimmed-down.zip + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:53:15 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:53:15 -0400 (EDT) Subject: [Mono-bugs] [Bug 81802][Nor] Changed - EveMon fails to start (after missing methods are added) In-Reply-To: Message-ID: <20070604165315.EFA5E1AE51B@bugzilla.ximian.com> 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 skolima at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81802 --- shadow/81802 2007-06-04 12:52:50.000000000 -0400 +++ shadow/81802.tmp.11386 2007-06-04 12:53:15.000000000 -0400 @@ -2,21 +2,22 @@ Product: Mono: Class Libraries Version: 1.2 OS: All OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: toshok at ximian.com ReportedBy: skolima at gmail.com QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Summary: EveMon fails to start (after missing methods are added) +BugsThisDependsOn: 81801 Description of Problem: EveMon fails to create it's main form when running on mono. It runs fined on MS.Net. Steps to reproduce the problem: From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:50:05 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:50:05 -0400 (EDT) Subject: [Mono-bugs] [Bug 81802][Nor] New - EveMon fails to start (after missing methods are added) In-Reply-To: Message-ID: <20070604165005.9D7781AE50D@bugzilla.ximian.com> 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 skolima at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81802 --- shadow/81802 2007-06-04 12:50:05.000000000 -0400 +++ shadow/81802.tmp.11273 2007-06-04 12:50:05.000000000 -0400 @@ -0,0 +1,43 @@ +Bug#: 81802 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: skolima at gmail.com +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Summary: EveMon fails to start (after missing methods are added) + +Description of Problem: +EveMon fails to create it's main form when running on mono. It runs fined +on MS.Net. + +Steps to reproduce the problem: +1. Download the project +2. Compile with VS2005 and MWF as descibed on +http://www.mono-project.com/Guide:_Debugging_With_MWF +3. Run + +Actual Results: +IndexOutOfBoundsException in InitializeComponent + + +Expected Results: +Form creates without problems (the attached test case has all other +functionality trimmed) + + +How often does this happen? +Always (checked on Windows through VS2005 and Linux - running EveMon +binaries from http://evemon.battleclinic.com/) + +Additional Information: +This depends on 81801 (missing methods). I will update the exception text +as soon as I get back to my devel-box. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 12:53:16 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 12:53:16 -0400 (EDT) Subject: [Mono-bugs] [Bug 81801][Nor] Changed - EveMon fails to compile because of missing methods in MWF In-Reply-To: Message-ID: <20070604165316.370DC1AE51F@bugzilla.ximian.com> 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 skolima at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81801 --- shadow/81801 2007-06-04 12:31:57.000000000 -0400 +++ shadow/81801.tmp.11392 2007-06-04 12:53:16.000000000 -0400 @@ -11,12 +11,13 @@ AssignedTo: toshok at ximian.com ReportedBy: skolima at gmail.com QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Summary: EveMon fails to compile because of missing methods in MWF +OtherBugsDependingOnThis: 81802 Attached is a patch (against head as of today morning) with stubs for needed missing methods in MWF. ------- Additional Comments From skolima at gmail.com 2007-06-04 12:31 ------- Created an attachment (id=19368) From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 13:09:06 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 13:09:06 -0400 (EDT) Subject: [Mono-bugs] [Bug 81796][Nor] Changed - PropertyGrid does not correctly change SelectedObject - it crashs In-Reply-To: Message-ID: <20070604170906.5F1F01AE521@bugzilla.ximian.com> 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 gert.driesen at pandora.be. http://bugzilla.ximian.com/show_bug.cgi?id=81796 --- shadow/81796 2007-06-01 12:35:30.000000000 -0400 +++ shadow/81796.tmp.11765 2007-06-04 13:09:06.000000000 -0400 @@ -1,14 +1,14 @@ Bug#: 81796 Product: Mono: Class Libraries Version: 1.2 OS: All OS Details: -Status: NEW +Status: NEEDINFO Resolution: -Severity: +Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: toshok at ximian.com ReportedBy: michal.kovac.develop at centrum.cz QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -32,6 +32,12 @@ Actual Results: The application crashs Expected Results: The property grid will show properties of button2 + +------- Additional Comments From gert.driesen at pandora.be 2007-06-04 13:09 ------- +I was able to reproduce this using a 2 weeks old version of Mono, but +it appears to work fine using SVN head. + +Can you confirm this ? From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 14:03:07 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 14:03:07 -0400 (EDT) Subject: [Mono-bugs] [Bug 81803][Nor] New - virtual method in a base class is not recognized for an override In-Reply-To: Message-ID: <20070604180307.7CEC31AE510@bugzilla.ximian.com> 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 atsushi at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=81803 --- shadow/81803 2007-06-04 14:03:07.000000000 -0400 +++ shadow/81803.tmp.13266 2007-06-04 14:03:07.000000000 -0400 @@ -0,0 +1,48 @@ +Bug#: 81803 +Product: Mono: Compilers +Version: 1.0 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: C# +AssignedTo: rharinath at novell.com +ReportedBy: atsushi at ximian.com +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: virtual method in a base class is not recognized for an override + +Please fill in this template when reporting a bug, unless you know what you +are doing. +Description of Problem: + +There is a disable code in +mcs/class/System/System.Configuration/CustomizableLocalFileSettingsProvider.cs +line 85 (at r78561) due to an issue explained here. + +When I enabled the commented code: + +System.Configuration\CustomizableFileSettingsProvider.cs(87,38): error +CS0115: +`System.Configuration.CustomizableFileSettingsProvider.Initialize(string, +System.Collections.Specialized.NameValueCollection)' is marked as an +override but no suitable method found to override + +This "CustomizableLocalFileSettingsProvider" is derived from +SettingsProvider (in System.dll), whose base class is ProviderBase (in +System.Configuration.dll), which has a method "public virtual void +Initialize (string, NameValueCollection). Hence this overload should be fine. + +(Confirmed that I have System.Configuration.Provider.ProviderBase with +Initialize() in mcs/class/lib/net_2_0/System.Configuration.dll.) + +This blocks LocalFileSettingsProvider implementation in practice. + + +Additional Information: + +It might be a build issue, but I doubt that. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 14:37:46 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 14:37:46 -0400 (EDT) Subject: [Mono-bugs] [Bug 81804][Wis] New - DataGridView Style.Format = "d" exits application In-Reply-To: Message-ID: <20070604183746.EF8421AE50D@bugzilla.ximian.com> 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 kobruleht2 at hot.ee. http://bugzilla.ximian.com/show_bug.cgi?id=81804 --- shadow/81804 2007-06-04 14:37:46.000000000 -0400 +++ shadow/81804.tmp.14123 2007-06-04 14:37:46.000000000 -0400 @@ -0,0 +1,68 @@ +Bug#: 81804 +Product: Mono: Class Libraries +Version: 1.0 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: kobruleht2 at hot.ee +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: DataGridView Style.Format = "d" exits application + +To reproduce, + +run the code. + +Observed: + +application exits without any message + +using System; +using System.Windows.Forms; + +public class CalendarColumn : DataGridViewColumn { + public CalendarColumn() + : base(new CalendarCell()) { + } + + public class CalendarCell : DataGridViewTextBoxCell { + + public CalendarCell() + : base() { + // this line exits application: + this.Style.Format = "d"; + } + + public class Form1 : Form { + private DataGridView dataGridView1 = new DataGridView(); + + public static void Main() { + try { + Application.Run(new Form1()); + } + catch (Exception e) { + MessageBox.Show(e.ToString()); + } + } + + public Form1() { + //this.dataGridView1.Dock = DockStyle.Fill; + this.Controls.Add(this.dataGridView1); + this.Load += new EventHandler(Form1_Load); + //this.Text = "DataGridView calendar column demo"; + } + + private void Form1_Load(object sender, EventArgs e) { + CalendarColumn col = new CalendarColumn(); + this.dataGridView1.Columns.Add(col); + } + } + } +} From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 14:38:24 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 14:38:24 -0400 (EDT) Subject: [Mono-bugs] [Bug 81805][Wis] New - DataGridViewComboBoxColumn not created In-Reply-To: Message-ID: <20070604183824.034941AE50D@bugzilla.ximian.com> 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 kobruleht2 at hot.ee. http://bugzilla.ximian.com/show_bug.cgi?id=81805 --- shadow/81805 2007-06-04 14:38:24.000000000 -0400 +++ shadow/81805.tmp.14148 2007-06-04 14:38:24.000000000 -0400 @@ -0,0 +1,58 @@ +Bug#: 81805 +Product: Mono: Class Libraries +Version: 1.0 +OS: other +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: toshok at ximian.com +ReportedBy: kobruleht2 at hot.ee +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: DataGridViewComboBoxColumn not created + +To reproduce, run the code. + +Observed: + +grid is empty + +Expected: + +grid should contain combobox. + + +using System; +using System.Windows.Forms; + +class Form1 : Form { + + [STAThread] + static void Main() { + try { + Application.Run(new Form1()); + } + catch (Exception e) { + MessageBox.Show(e.ToString()); + } + } + + private DataGridView dataGridView1 = new DataGridView(); + + public Form1() { + Controls.Add(this.dataGridView1); + Load += new EventHandler(Form1_Load); + } + + private void Form1_Load(object sender, EventArgs e) { + DataGridViewComboBoxColumn + col = new DataGridViewComboBoxColumn(); + col.DropDownWidth *= 3; + dataGridView1.Columns.Add(col); + } +} From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 14:49:25 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 14:49:25 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Maj] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070604184925.2EF8B1AE50D@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-06-04 12:35:24.000000000 -0400 +++ shadow/81781.tmp.14502 2007-06-04 14:49:25.000000000 -0400 @@ -899,6 +899,14 @@ Created an attachment (id=19367) Function that was causing Sigabrt ------- Additional Comments From newsun at rocketmail.com 2007-06-04 12:35 ------- Attached log file and function that is causing sigabrt. + +------- Additional Comments From vargaz at gmail.com 2007-06-04 14:49 ------- +This is a bit strange. The crash happens while our JIT compiles a +method called +Microsoft.VisualBasic.CompilerServices.OverloadResolution:CanConvert +but our sources doesn't contains such a method. Are you using some kind +of microsoft dlls ? + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 15:00:21 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 15:00:21 -0400 (EDT) Subject: [Mono-bugs] [Bug 81767][Wis] Changed - convert_share does not convert the FILE_SHARE_DELETE In-Reply-To: Message-ID: <20070604190021.AC9681AE51B@bugzilla.ximian.com> 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 krawczyk.wojciech at gazeta.pl. http://bugzilla.ximian.com/show_bug.cgi?id=81767 --- shadow/81767 2007-05-28 14:35:45.000000000 -0400 +++ shadow/81767.tmp.14952 2007-06-04 15:00:21.000000000 -0400 @@ -40,6 +40,11 @@ How often does this happen? everytime Additional Information: + +------- Additional Comments From krawczyk.wojciech at gazeta.pl 2007-06-04 15:00 ------- +Created an attachment (id=19370) +This fails with error on mono-1.2.3 + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 15:35:46 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 15:35:46 -0400 (EDT) Subject: [Mono-bugs] [Bug 81767][Wis] Changed - convert_share does not convert the FILE_SHARE_DELETE In-Reply-To: Message-ID: <20070604193546.B4E991AE510@bugzilla.ximian.com> 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 krawczyk.wojciech at gazeta.pl. http://bugzilla.ximian.com/show_bug.cgi?id=81767 --- shadow/81767 2007-06-04 15:00:21.000000000 -0400 +++ shadow/81767.tmp.16961 2007-06-04 15:35:46.000000000 -0400 @@ -45,6 +45,11 @@ Additional Information: ------- Additional Comments From krawczyk.wojciech at gazeta.pl 2007-06-04 15:00 ------- Created an attachment (id=19370) This fails with error on mono-1.2.3 + +------- Additional Comments From krawczyk.wojciech at gazeta.pl 2007-06-04 15:35 ------- +Created an attachment (id=19371) +Zipped patch file for the file-io.h and file-io.c + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 15:39:34 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 15:39:34 -0400 (EDT) Subject: [Mono-bugs] [Bug 81767][Nor] Changed - convert_share does not convert the FILE_SHARE_DELETE In-Reply-To: Message-ID: <20070604193934.9D7681AE510@bugzilla.ximian.com> 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 krawczyk.wojciech at gazeta.pl. http://bugzilla.ximian.com/show_bug.cgi?id=81767 --- shadow/81767 2007-06-04 15:35:46.000000000 -0400 +++ shadow/81767.tmp.17178 2007-06-04 15:39:34.000000000 -0400 @@ -2,19 +2,19 @@ Product: Mono: Runtime Version: 1.2 OS: Windows XP OS Details: Status: NEW Resolution: -Severity: -Priority: Wishlist +Severity: Unknown +Priority: Normal Component: io-layer AssignedTo: dick at ximian.com ReportedBy: krawczyk.wojciech at gazeta.pl QAContact: mono-bugs at ximian.com -TargetMilestone: --- +TargetMilestone: V2_0 URL: Cc: Summary: convert_share does not convert the FILE_SHARE_DELETE Description of Problem: When the FileStream is created using: From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 15:55:54 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 15:55:54 -0400 (EDT) Subject: [Mono-bugs] [Bug 81011][Maj] Changed - Assembly load deadlock in multithreaded application In-Reply-To: Message-ID: <20070604195554.3C1F61AE50D@bugzilla.ximian.com> 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 robertw at ssgx.com. http://bugzilla.ximian.com/show_bug.cgi?id=81011 --- shadow/81011 2007-03-06 10:29:25.000000000 -0500 +++ shadow/81011.tmp.18046 2007-06-04 15:55:54.000000000 -0400 @@ -100,6 +100,11 @@ ------- Additional Comments From vargaz at gmail.com 2007-03-06 10:29 ------- This is most likely caused by taking the domain lock in mono_domain_assembly_search () while holding the assemblies lock in mono_assembly_load_from_full (). + +------- Additional Comments From robertw at ssgx.com 2007-06-04 15:55 ------- +Can I do anything to help resolve this issue? It hits us pretty hard +on FreeBSD as processes just freeze randomly (from crontab) and +there's nothing we can do to prevent it. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 16:10:51 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 16:10:51 -0400 (EDT) Subject: [Mono-bugs] [Bug 80137][Nor] Changed - [2.0] Label: AutoSize does not work for linebreaks In-Reply-To: Message-ID: <20070604201051.408251AE50D@bugzilla.ximian.com> 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 everaldo at simios.org. http://bugzilla.ximian.com/show_bug.cgi?id=80137 --- shadow/80137 2007-06-01 14:31:46.000000000 -0400 +++ shadow/80137.tmp.18608 2007-06-04 16:10:51.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 80137 Product: Mono: Class Libraries Version: 1.2 OS: GNU/Linux [Other] OS Details: -Status: REOPENED -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Normal Component: Windows.Forms AssignedTo: everaldo at simios.org ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com @@ -48,6 +48,9 @@ As a result, the SizesTest also fails on .NET 2.0 (but passes on .NET 1.x). ------- Additional Comments From everaldo at simios.org 2007-06-01 14:31 ------- Test is fixed for 2.0 in r78445, now it causes error so I am fixing Label 2.0 AutoSize. + +------- Additional Comments From everaldo at simios.org 2007-06-04 16:10 ------- +Fixed in SVN r78475. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 16:30:03 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 16:30:03 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Maj] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070604203003.B2EBF1AE50D@bugzilla.ximian.com> 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 newsun at rocketmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-06-04 14:49:25.000000000 -0400 +++ shadow/81781.tmp.19824 2007-06-04 16:30:03.000000000 -0400 @@ -907,6 +907,20 @@ This is a bit strange. The crash happens while our JIT compiles a method called Microsoft.VisualBasic.CompilerServices.OverloadResolution:CanConvert but our sources doesn't contains such a method. Are you using some kind of microsoft dlls ? + +------- Additional Comments From newsun at rocketmail.com 2007-06-04 16:30 ------- +My executable references Microsoft.VisualBasic.dll in order to +create legacy COM objects. The 'CreateObject' function is not used in +this section of the code and is never executed. + + +When I remove the reference and build I get three compile errors all +related to CreateObject function in our Printing namespace. + +Tomorrow, I will remove Microsoft.VisualBasic references, compile and +tomorrow to see if it eliminates the runtime error. + + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 17:36:20 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 17:36:20 -0400 (EDT) Subject: [Mono-bugs] [Bug 81804][Wis] Changed - DataGridView Style.Format = "d" exits application In-Reply-To: Message-ID: <20070604213620.73F321AE50D@bugzilla.ximian.com> 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 pedromj at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81804 --- shadow/81804 2007-06-04 14:37:46.000000000 -0400 +++ shadow/81804.tmp.23831 2007-06-04 17:36:20.000000000 -0400 @@ -2,16 +2,16 @@ Product: Mono: Class Libraries Version: 1.0 OS: other OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Wishlist Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: pedromj at gmail.com ReportedBy: kobruleht2 at hot.ee QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: DataGridView Style.Format = "d" exits application From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 17:36:40 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 17:36:40 -0400 (EDT) Subject: [Mono-bugs] [Bug 81805][Wis] Changed - DataGridViewComboBoxColumn not created In-Reply-To: Message-ID: <20070604213640.A40D11AE50D@bugzilla.ximian.com> 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 pedromj at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81805 --- shadow/81805 2007-06-04 14:38:24.000000000 -0400 +++ shadow/81805.tmp.23865 2007-06-04 17:36:40.000000000 -0400 @@ -2,16 +2,16 @@ Product: Mono: Class Libraries Version: 1.0 OS: other OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Wishlist Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: pedromj at gmail.com ReportedBy: kobruleht2 at hot.ee QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: DataGridViewComboBoxColumn not created From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 18:15:15 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 18:15:15 -0400 (EDT) Subject: [Mono-bugs] [Bug 81807][Nor] New - Switch on nullable enum produces broken IL code In-Reply-To: Message-ID: <20070604221515.4AD1E1AE510@bugzilla.ximian.com> 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 lars at ahlzen.com. http://bugzilla.ximian.com/show_bug.cgi?id=81807 --- shadow/81807 2007-06-04 18:15:15.000000000 -0400 +++ shadow/81807.tmp.25649 2007-06-04 18:15:15.000000000 -0400 @@ -0,0 +1,64 @@ +Bug#: 81807 +Product: Mono: Compilers +Version: 1.2 +OS: GNU/Linux [Other] +OS Details: Gentoo +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: C# +AssignedTo: rharinath at novell.com +ReportedBy: lars at ahlzen.com +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: Switch on nullable enum produces broken IL code + +With a switch on a nullable enum type, the compiler seems to generate some +broken IL code. + +Here is a simple code snippet to reproduce the issue: + +using System; +public enum TestEnum { Value1, Value2 } +public class TestClass +{ + public static void Main() + { + Console.WriteLine("Alive so far..."); + TestEnum? testEnum = TestEnum.Value1; + switch (testEnum) { + case TestEnum.Value1: + Console.WriteLine("Value 1"); + break; + } + } +} + + +Running this (with Mono 1.2.4) consistently gives me the following result: + +lars at saturn ~/projects/wx $ gmcs testcase.cs +lars at saturn ~/projects/wx $ mono ./testcase.exe + +Unhandled Exception: System.InvalidProgramException: Invalid IL code in +TestClass:Main (): IL_001a: brfalse IL_ffffffff + + +Apparently, it crashes before execution reaches Console.WriteLine line. + + +Compiling and running it with Microsoft .NET (version info below) produces +the following (expected) result: + +Microsoft (R) Visual C# 2005 Compiler version 8.00.50727.42 +for Microsoft (R) Windows (R) 2005 Framework version 2.0.50727 +Copyright (C) Microsoft Corporation 2001-2005. All rights reserved. + +Alive so far... +Value 1 + + +Please adjust severity and priority as appropriate. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 18:24:17 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 18:24:17 -0400 (EDT) Subject: [Mono-bugs] [Bug 81807][Nor] Changed - Switch on nullable enum produces broken IL code In-Reply-To: Message-ID: <20070604222417.DCE7A1AE510@bugzilla.ximian.com> 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 lars at ahlzen.com. http://bugzilla.ximian.com/show_bug.cgi?id=81807 --- shadow/81807 2007-06-04 18:15:15.000000000 -0400 +++ shadow/81807.tmp.26048 2007-06-04 18:24:17.000000000 -0400 @@ -2,13 +2,13 @@ Product: Mono: Compilers Version: 1.2 OS: GNU/Linux [Other] OS Details: Gentoo Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: C# AssignedTo: rharinath at novell.com ReportedBy: lars at ahlzen.com QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -59,6 +59,18 @@ Alive so far... Value 1 Please adjust severity and priority as appropriate. + +------- Additional Comments From lars at ahlzen.com 2007-06-04 18:24 ------- +Another detail worth mentioning... Switching on the nullable's value +(which you probably want to do most of the time) works as expected: + +In other words, if switch(testEnum) is changed to +switch(testEnum.Value) you get the expected output: + +lars at saturn ~/projects/wx $ mono ./testcase.exe +Alive so far... +Value 1 + From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 18:34:38 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 18:34:38 -0400 (EDT) Subject: [Mono-bugs] [Bug 81788][Min] Changed - ListBox: Setting DataSource to null does not clear items In-Reply-To: Message-ID: <20070604223438.2197C1AE50D@bugzilla.ximian.com> 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 unserkonig at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81788 --- shadow/81788 2007-05-31 16:29:34.000000000 -0400 +++ shadow/81788.tmp.26303 2007-06-04 18:34:38.000000000 -0400 @@ -2,16 +2,16 @@ Product: Mono: Class Libraries Version: 1.2 OS: All OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Minor Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: calberto.cortez at gmail.com ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: ListBox: Setting DataSource to null does not clear items From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 18:38:38 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 18:38:38 -0400 (EDT) Subject: [Mono-bugs] [Bug 81779][Wis] Changed - GUI Error in WinForm Treeview, Listview, Tab In-Reply-To: Message-ID: <20070604223838.B96561AE50D@bugzilla.ximian.com> 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 unserkonig at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81779 --- shadow/81779 2007-05-30 07:47:52.000000000 -0400 +++ shadow/81779.tmp.26422 2007-06-04 18:38:38.000000000 -0400 @@ -2,13 +2,13 @@ Product: Mono: Class Libraries Version: 1.0 OS: SUSE 9.2 OS Details: Suse Linux 10.0 Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Wishlist Component: Windows.Forms AssignedTo: toshok at ximian.com ReportedBy: gu at interasco.de QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -27,6 +27,13 @@ the listview show partially "half lines" Tabulator: text of tab page header appears over the tab page icon for a screenshot send me a mail thx for mono! + +------- Additional Comments From unserkonig at gmail.com 2007-06-04 18:38 ------- +Could you provide test samples for those bugs? I'm not getting some of +those errors in ListView, so I think there's a set of steps to +reproduce the bug. + +Also, you shoul fill a separate bug for each issue next time. From bugzilla-daemon at bugzilla.ximian.com Mon Jun 4 18:39:22 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Mon, 4 Jun 2007 18:39:22 -0400 (EDT) Subject: [Mono-bugs] [Bug 81771][Wis] Changed - Null object reference after ListControl.DataSource is set to null In-Reply-To: Message-ID: <20070604223922.AF8B91AE50D@bugzilla.ximian.com> 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 unserkonig at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81771 --- shadow/81771 2007-05-31 15:49:42.000000000 -0400 +++ shadow/81771.tmp.26459 2007-06-04 18:39:22.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 81771 Product: Mono: Class Libraries Version: 1.2 OS: unknown OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Wishlist Component: Windows.Forms AssignedTo: calberto.cortez at gmail.com ReportedBy: albright at wesay.org QAContact: mono-bugs at ximian.com @@ -43,6 +43,9 @@ Additional Information: ------- Additional Comments From unserkonig at gmail.com 2007-05-31 15:49 ------- This should be fixed in SVN. Could you confirm it? + +------- Additional Comments From unserkonig at gmail.com 2007-06-04 18:39 ------- +Assuming the bug as fixed. From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 01:31:45 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 01:31:45 -0400 (EDT) Subject: [Mono-bugs] [Bug 81602][Nor] Changed - Segmentationfault in ListViewItem.Layout running unit tests In-Reply-To: Message-ID: <20070605053145.BD3EA1AE50D@bugzilla.ximian.com> 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 unserkonig at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81602 --- shadow/81602 2007-05-28 11:39:26.000000000 -0400 +++ shadow/81602.tmp.6696 2007-06-05 01:31:45.000000000 -0400 @@ -57,6 +57,19 @@ I'm not sure if it's the same issue. Can someone, who has access to that box, check out the log file of the MWF test ? ------- Additional Comments From gert.driesen at pandora.be 2007-05-28 11:39 ------- *** Bug 81746 has been marked as a duplicate of this bug. *** + +------- Additional Comments From unserkonig at gmail.com 2007-06-05 01:31 ------- +I tried it on Open Sue 10.2, Ubuntu 7.04 (both vmware machine and +native installation), and couldn't reproduce it at all. + +As an additional comment, also toshok is getting it on his SLED (old +system, he states). + +Anyway, based on this, I just commited a possible work around, since +we can't easily reproduce thus bug, and mostly it's a quite uncommon +(and mostly undesired) condition. + +Gert, could you confirm that it's not failling your you anymore? From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 04:43:46 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 04:43:46 -0400 (EDT) Subject: [Mono-bugs] [Bug 81779][Wis] Changed - GUI Error in WinForm Treeview, Listview, Tab In-Reply-To: Message-ID: <20070605084346.F09571AE50D@bugzilla.ximian.com> 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 gu at interasco.de. http://bugzilla.ximian.com/show_bug.cgi?id=81779 --- shadow/81779 2007-06-04 18:38:38.000000000 -0400 +++ shadow/81779.tmp.11757 2007-06-05 04:43:46.000000000 -0400 @@ -34,6 +34,11 @@ ------- Additional Comments From unserkonig at gmail.com 2007-06-04 18:38 ------- Could you provide test samples for those bugs? I'm not getting some of those errors in ListView, so I think there's a set of steps to reproduce the bug. Also, you shoul fill a separate bug for each issue next time. + +------- Additional Comments From gu at interasco.de 2007-06-05 04:43 ------- +Created an attachment (id=19372) +SourceCode to reproduce the errors + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 04:44:33 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 04:44:33 -0400 (EDT) Subject: [Mono-bugs] [Bug 81779][Wis] Changed - GUI Error in WinForm Treeview, Listview, Tab In-Reply-To: Message-ID: <20070605084433.9670D1AE50D@bugzilla.ximian.com> 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 gu at interasco.de. http://bugzilla.ximian.com/show_bug.cgi?id=81779 --- shadow/81779 2007-06-05 04:43:46.000000000 -0400 +++ shadow/81779.tmp.11791 2007-06-05 04:44:33.000000000 -0400 @@ -39,6 +39,11 @@ Also, you shoul fill a separate bug for each issue next time. ------- Additional Comments From gu at interasco.de 2007-06-05 04:43 ------- Created an attachment (id=19372) SourceCode to reproduce the errors + +------- Additional Comments From gu at interasco.de 2007-06-05 04:44 ------- +Created an attachment (id=19373) +Screenshot of GUI Problems + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 04:46:43 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 04:46:43 -0400 (EDT) Subject: [Mono-bugs] [Bug 81808][Maj] New - Update locale-builder to use the Unicode CLDR Project In-Reply-To: Message-ID: <20070605084643.F11361AE50D@bugzilla.ximian.com> 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 dna at informatik.uni-kiel.de. http://bugzilla.ximian.com/show_bug.cgi?id=81808 --- shadow/81808 2007-06-05 04:46:43.000000000 -0400 +++ shadow/81808.tmp.11863 2007-06-05 04:46:43.000000000 -0400 @@ -0,0 +1,27 @@ +Bug#: 81808 +Product: Mono: Class Libraries +Version: 1.2 +OS: All +OS Details: +Status: NEW +Resolution: +Severity: Unknown +Priority: Major +Component: CORLIB +AssignedTo: mono-bugs at ximian.com +ReportedBy: dna at informatik.uni-kiel.de +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: Update locale-builder to use the Unicode CLDR Project + +Currently mono lacks of locale data for globalization. +DateTime parsing patterns, names or the FirstDayOfTheWeek property. +In mono it is alway 0 (Sunday) but in european countries it is 1 (Monday). + +Mono should use the up to date data from: + +http://www.unicode.org/cldr/ + +We discussed that with Marek and Atsushi in the #monodev irc channel. From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 04:47:04 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 04:47:04 -0400 (EDT) Subject: [Mono-bugs] [Bug 81779][Wis] Changed - GUI Error in WinForm Treeview, Listview, Tab In-Reply-To: Message-ID: <20070605084704.5C15E1AE50D@bugzilla.ximian.com> 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 gu at interasco.de. http://bugzilla.ximian.com/show_bug.cgi?id=81779 --- shadow/81779 2007-06-05 04:44:33.000000000 -0400 +++ shadow/81779.tmp.11883 2007-06-05 04:47:04.000000000 -0400 @@ -44,6 +44,16 @@ ------- Additional Comments From gu at interasco.de 2007-06-05 04:44 ------- Created an attachment (id=19373) Screenshot of GUI Problems + +------- Additional Comments From gu at interasco.de 2007-06-05 04:47 ------- +in the attachments you see a screenshot and the code to reproduce +this. + +the problems of the listview arise, when the size of the listview are +bigger as the size of the parent-panel. thus react mono-WinForms +differently as Microsoft-Forms. + + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 05:45:28 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 05:45:28 -0400 (EDT) Subject: [Mono-bugs] [Bug 81808][Wis] Changed - Update locale-builder to use the Unicode CLDR Project In-Reply-To: Message-ID: <20070605094528.5D6081AE50D@bugzilla.ximian.com> 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 atsushi at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=81808 --- shadow/81808 2007-06-05 04:46:43.000000000 -0400 +++ shadow/81808.tmp.13957 2007-06-05 05:45:28.000000000 -0400 @@ -3,13 +3,13 @@ Version: 1.2 OS: All OS Details: Status: NEW Resolution: Severity: Unknown -Priority: Major +Priority: Wishlist Component: CORLIB AssignedTo: mono-bugs at ximian.com ReportedBy: dna at informatik.uni-kiel.de QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: @@ -22,6 +22,9 @@ Mono should use the up to date data from: http://www.unicode.org/cldr/ We discussed that with Marek and Atsushi in the #monodev irc channel. + +------- Additional Comments From atsushi at ximian.com 2007-06-05 05:45 ------- +Wrong priority. From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 07:31:08 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 07:31:08 -0400 (EDT) Subject: [Mono-bugs] [Bug 81011][Maj] Changed - Assembly load deadlock in multithreaded application In-Reply-To: Message-ID: <20070605113108.48E1E1AE50D@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81011 --- shadow/81011 2007-06-04 15:55:54.000000000 -0400 +++ shadow/81011.tmp.17338 2007-06-05 07:31:07.000000000 -0400 @@ -105,6 +105,10 @@ ------- Additional Comments From robertw at ssgx.com 2007-06-04 15:55 ------- Can I do anything to help resolve this issue? It hits us pretty hard on FreeBSD as processes just freeze randomly (from crontab) and there's nothing we can do to prevent it. + +------- Additional Comments From vargaz at gmail.com 2007-06-05 07:31 ------- +You can try loading all your assemblies at startup while in +single-threaded code. From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 08:25:04 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 08:25:04 -0400 (EDT) Subject: [Mono-bugs] [Bug 81797][Nor] Changed - Attribute.GetCustomAttributes doesn't get inherited attributes for properties In-Reply-To: Message-ID: <20070605122504.8EFF11AE51F@bugzilla.ximian.com> 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 marek.safar at seznam.cz. http://bugzilla.ximian.com/show_bug.cgi?id=81797 --- shadow/81797 2007-06-01 20:04:02.000000000 -0400 +++ shadow/81797.tmp.19330 2007-06-05 08:25:04.000000000 -0400 @@ -10,13 +10,12 @@ Component: CORLIB AssignedTo: mono-bugs at ximian.com ReportedBy: rolfkvinge at ya.com QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: -Cc: Summary: Attribute.GetCustomAttributes doesn't get inherited attributes for properties OtherBugsDependingOnThis: 79762 Repro: using System.Reflection; @@ -68,6 +67,9 @@ We now print 4 in both cases. I think thats acceptable. ------- Additional Comments From vargaz at gmail.com 2007-06-01 20:04 ------- Reopening as the fix seems to break the build. + +------- Additional Comments From marek.safar at seznam.cz 2007-06-05 08:25 ------- +What was the build error ? From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 10:57:22 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 10:57:22 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Maj] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070605145722.BA50C1AE50D@bugzilla.ximian.com> 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 newsun at rocketmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-06-04 16:30:03.000000000 -0400 +++ shadow/81781.tmp.25735 2007-06-05 10:57:22.000000000 -0400 @@ -921,6 +921,35 @@ related to CreateObject function in our Printing namespace. Tomorrow, I will remove Microsoft.VisualBasic references, compile and tomorrow to see if it eliminates the runtime error. + +------- Additional Comments From newsun at rocketmail.com 2007-06-05 10:57 ------- +Removed my Assembliy's references to Microsoft.VisualBasic. Made 10 +code changes that replaced ChrW() and FileLen() with functionality +supplied by the System.IO.FileInfo and System.Char. I built my +application, deployed it and removed the VisualBasic.Dll from the +applications bin folder. + +Application seems to work fine now. Here are a few observations and +speculations. + + +- Sigabrt was caused by the following line of code : + C.Parameters(_messageParam).Value = d.RoutingInformation.MessageId + +- the above line of code uses late binding as collection returns +Object [IDataParam is the underlying type] + +- How does the JIT accomplish this late binding? Why was it Loading +and reflecting on the VisualBasic.dll + +If I get a chance I will create a simple test project and stick the +VisualBasic.Dll in the bin folder to see if failure occurs when late +binding is resolved. + + +Hope this helps. + + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 11:09:38 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 11:09:38 -0400 (EDT) Subject: [Mono-bugs] [Bug 81687][Nor] Changed - [PATCH] Tab order does not match MS In-Reply-To: Message-ID: <20070605150938.C4E471AE50D@bugzilla.ximian.com> 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 . http://bugzilla.ximian.com/show_bug.cgi?id=81687 --- shadow/81687 2007-05-26 21:45:55.000000000 -0400 +++ shadow/81687.tmp.26170 2007-06-05 11:09:38.000000000 -0400 @@ -5,13 +5,13 @@ OS Details: Status: NEW Resolution: Severity: Unknown Priority: Normal Component: Windows.Forms -AssignedTo: toshok at ximian.com +AssignedTo: shana.ufie at gmail.com ReportedBy: gert.driesen at pandora.be QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: [PATCH] Tab order does not match MS From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 11:16:12 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 11:16:12 -0400 (EDT) Subject: [Mono-bugs] [Bug 81702][Wis] Changed - [Linux/sparc] Fails to build with --with-sigaltstack=yes In-Reply-To: Message-ID: <20070605151612.7331F1AE50D@bugzilla.ximian.com> 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 lupus at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=81702 --- shadow/81702 2007-05-23 10:38:50.000000000 -0400 +++ shadow/81702.tmp.26396 2007-06-05 11:16:12.000000000 -0400 @@ -3,17 +3,17 @@ Version: 1.2 OS: unknown OS Details: Status: NEW Resolution: Severity: Unknown -Priority: Major -Component: generics +Priority: Wishlist +Component: misc AssignedTo: martin at ximian.com ReportedBy: slomo at circular-chaos.org -QAContact: martin at ximian.com +QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: Cc: Summary: [Linux/sparc] Fails to build with --with-sigaltstack=yes Hi, From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 11:20:39 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 11:20:39 -0400 (EDT) Subject: [Mono-bugs] [Bug 81781][Nor] Changed - SIGABRT while executing native code =>indicates a fatal error in mono runtime ... In-Reply-To: Message-ID: <20070605152039.BFA411AE50D@bugzilla.ximian.com> 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 lupus at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=81781 --- shadow/81781 2007-06-05 10:57:22.000000000 -0400 +++ shadow/81781.tmp.26555 2007-06-05 11:20:39.000000000 -0400 @@ -3,13 +3,13 @@ Version: 1.2 OS: other OS Details: Ubuntu 7.04 Status: NEW Resolution: Severity: Unknown -Priority: Major +Priority: Normal Component: JIT AssignedTo: lupus at ximian.com ReportedBy: newsun at rocketmail.com QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: @@ -950,6 +950,11 @@ binding is resolved. Hope this helps. + +------- Additional Comments From lupus at ximian.com 2007-06-05 11:20 ------- +Does it work ok if you keep the same code but use the mono +implementation of Microsoft.VisualBasic.dll? You can't use MS's core +assemblies with mono. From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 11:21:53 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 11:21:53 -0400 (EDT) Subject: [Mono-bugs] [Bug 81740][Nor] Changed - Bugs in the use of tailcalls and in the System.Threading.SynchronizationContext.Current In-Reply-To: Message-ID: <20070605152153.082991AE50D@bugzilla.ximian.com> 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 lupus at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=81740 --- shadow/81740 2007-05-29 05:37:17.000000000 -0400 +++ shadow/81740.tmp.26618 2007-06-05 11:21:52.000000000 -0400 @@ -3,13 +3,13 @@ Version: 1.2 OS: All OS Details: all; ms Vista/Xp, Linux os Status: NEW Resolution: Severity: Unknown -Priority: Blocker +Priority: Normal Component: misc AssignedTo: mono-bugs at ximian.com ReportedBy: s.guido at email.it QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: @@ -201,6 +201,10 @@ ------- Additional Comments From s.guido at email.it 2007-05-29 04:25 ------- ops..sorry, I had forget: you must open a file (eg. input.scls included) to get the exception Thanks + +------- Additional Comments From lupus at ximian.com 2007-06-05 11:21 ------- +A smaller test case would be easier to debug (especially one that +doesn't depend on F#). From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 11:38:39 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 11:38:39 -0400 (EDT) Subject: [Mono-bugs] [Bug 77633][Wis] Changed - DateTime.Parse() throws System.ArgumentOutOfRangeException In-Reply-To: Message-ID: <20070605153839.85CDE1AE50D@bugzilla.ximian.com> 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 shana.ufie at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=77633 --- shadow/77633 2007-05-29 08:58:38.000000000 -0400 +++ shadow/77633.tmp.27217 2007-06-05 11:38:39.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 77633 Product: Mono: Class Libraries Version: 1.1 OS: unknown OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: FIXED Severity: Unknown Priority: Wishlist Component: System AssignedTo: mono-bugs at ximian.com ReportedBy: mail at meebey.net QAContact: mono-bugs at ximian.com @@ -79,6 +79,11 @@ #endif Other than that the patch looks fine. (though I'm unlikely to use const for every exception message as we don't do that in other classes ...) + +------- Additional Comments From shana.ufie at gmail.com 2007-06-05 11:38 ------- +patch commited on rev. 78637 (applied second version on mailing list, +with #ifdef's on ExpectedException, added changelog for test, changed +patch date, fixed patch author's name :) ) From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 12:12:38 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 12:12:38 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Maj] New - Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605161238.C1E891AE521@bugzilla.ximian.com> 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 informatique.internet at fiducial.fr. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 12:12:38.000000000 -0400 +++ shadow/81811.tmp.28366 2007-06-05 12:12:38.000000000 -0400 @@ -0,0 +1,90 @@ +Bug#: 81811 +Product: Mono: Runtime +Version: 1.2 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Major +Component: remoting +AssignedTo: lluis at ximian.com +ReportedBy: informatique.internet at fiducial.fr +QAContact: mono-bugs at ximian.com +TargetMilestone: --- +URL: +Cc: +Summary: Log4net Remoting appender don't work with mono + +Description of Problem: +I try to use to log4net RemotingAppender with mono (in order to create a +centralised log server for all our web applications) + + +Steps to reproduce the problem: +1. Create a simple RemotingAppender + + + + + + +2. Create the server +3. + +Actual Results: + +log4net:ERROR XmlHierarchyConfigurator: Could not create Appender +[RemotingAppen +der] of type [log4net.Appender.RemotingAppender]. Reported error follows. +System.Runtime.Remoting.RemotingException: Cannot create channel sink to +connect + to URL tcp://localhost:1234/LoggingSink. An appropriate channel has +probably no +t been registered. + at System.Runtime.Remoting.RemotingServices.GetClientChannelSinkChain +(System. +String url, System.Object channelData, System.String& objectUri) [0x0003e] +in /h +ome/hubert/mono/mcs/class/corlib/System.Runtime.Remoting/RemotingServices.cs:674 + + at System.Runtime.Remoting.RemotingServices.GetOrCreateClientIdentity +(System. +Runtime.Remoting.ObjRef objRef, System.Type proxyType, System.Object& +clientProx +y) [0x0001e] in +/home/hubert/mono/mcs/class/corlib/System.Runtime.Remoting/Remot +ingServices.cs:613 + at System.Runtime.Remoting.RemotingServices.GetRemoteObject +(System.Runtime.Re +moting.ObjRef objRef, System.Type proxyType) [0x00000] in +/home/hubert/mono/mcs/ +class/corlib/System.Runtime.Remoting/RemotingServices.cs:726 + at System.Runtime.Remoting.RemotingServices.Connect (System.Type +classToProxy, + System.String url, System.Object data) [0x00009] in +/home/hubert/mono/mcs/class +/corlib/System.Runtime.Remoting/RemotingServices.cs:183 + at System.Activator.GetObject (System.Type type, System.String url, +System.Obj +ect state) [0x00012] in +/home/hubert/mono/mcs/class/corlib/System/Activator.cs:3 +02 + at log4net.Appender.RemotingAppender.ActivateOptions () [0x0001c] in +/home/hub +ert/Librairies DotNet/log4net/src/Appender/RemotingAppender.cs:148 + at log4net.Repository.Hierarchy.XmlHierarchyConfigurator.ParseAppender +(System +.Xml.XmlElement appenderElement) [0x0019a] in /home/hubert/Librairies +DotNet/log +4net/src/Repository/Hierarchy/XmlHierarchyConfigurator.cs:329 +Expected Results: + + +How often does this happen? +always + +Additional Information: +it works well on MS.NET 1.1 it should works too with mono... +See the attached monodevelop solution test case! From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 12:12:52 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 12:12:52 -0400 (EDT) Subject: [Mono-bugs] [Bug 80391][Nor] Changed - Calling generic methods on interfaces is very slow In-Reply-To: Message-ID: <20070605161252.224231AE522@bugzilla.ximian.com> 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 lupus at ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=80391 --- shadow/80391 2007-01-01 16:39:49.000000000 -0500 +++ shadow/80391.tmp.28403 2007-06-05 12:12:52.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 80391 Product: Mono: Runtime Version: 1.0 OS: other OS Details: -Status: NEW -Resolution: +Status: RESOLVED +Resolution: DUPLICATE Severity: Unknown Priority: Normal Component: JIT AssignedTo: lupus at ximian.com ReportedBy: rolfkvinge at ya.com QAContact: mono-bugs at ximian.com @@ -86,6 +86,11 @@ #5 0x08157231 in mono_helper_compile_generic_method (obj=0x2ffe8, method=0x826b918, context=0x826b8e8, this_arg=0xbfbbc20c) at jit- icalls.c:804 ------- Additional Comments From miguel at ximian.com 2007-01-01 16:39 ------- CCing Martin he could weight in here. + +------- Additional Comments From lupus at ximian.com 2007-06-05 12:12 ------- + + +*** This bug has been marked as a duplicate of 81806 *** From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 12:14:02 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 12:14:02 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Maj] Changed - Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605161402.9DEDC1AE521@bugzilla.ximian.com> 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 informatique.internet at fiducial.fr. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 12:12:38.000000000 -0400 +++ shadow/81811.tmp.28452 2007-06-05 12:14:02.000000000 -0400 @@ -85,6 +85,11 @@ How often does this happen? always Additional Information: it works well on MS.NET 1.1 it should works too with mono... See the attached monodevelop solution test case! + +------- Additional Comments From informatique.internet at fiducial.fr 2007-06-05 12:14 ------- +Created an attachment (id=19375) +LogServer.tar.gz + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 12:15:16 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 12:15:16 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Maj] Changed - Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605161516.20EA71AE521@bugzilla.ximian.com> 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 informatique.internet at fiducial.fr. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 12:14:02.000000000 -0400 +++ shadow/81811.tmp.28502 2007-06-05 12:15:16.000000000 -0400 @@ -1,14 +1,14 @@ Bug#: 81811 Product: Mono: Runtime Version: 1.2 -OS: +OS: unknown OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Major Component: remoting AssignedTo: lluis at ximian.com ReportedBy: informatique.internet at fiducial.fr QAContact: mono-bugs at ximian.com TargetMilestone: --- @@ -90,6 +90,9 @@ See the attached monodevelop solution test case! ------- Additional Comments From informatique.internet at fiducial.fr 2007-06-05 12:14 ------- Created an attachment (id=19375) LogServer.tar.gz + +------- Additional Comments From informatique.internet at fiducial.fr 2007-06-05 12:15 ------- +the error is : Cannot create channel sink to connect to URL From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 12:58:53 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 12:58:53 -0400 (EDT) Subject: [Mono-bugs] [Bug 81797][Nor] Changed - Attribute.GetCustomAttributes doesn't get inherited attributes for properties In-Reply-To: Message-ID: <20070605165853.A9EA81AE523@bugzilla.ximian.com> 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 vargaz at gmail.com. http://bugzilla.ximian.com/show_bug.cgi?id=81797 --- shadow/81797 2007-06-05 08:25:04.000000000 -0400 +++ shadow/81797.tmp.29871 2007-06-05 12:58:53.000000000 -0400 @@ -70,6 +70,11 @@ ------- Additional Comments From vargaz at gmail.com 2007-06-01 20:04 ------- Reopening as the fix seems to break the build. ------- Additional Comments From marek.safar at seznam.cz 2007-06-05 08:25 ------- What was the build error ? + +------- Additional Comments From vargaz at gmail.com 2007-06-05 12:58 ------- +It was an mcs error during the build. You can re-enable the patch by +re-enabling the commented out code in System.MonoCustomAttrs::GetBase (). + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 14:13:13 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 14:13:13 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Nor] Changed - Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605181313.9408F1AE521@bugzilla.ximian.com> 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 robertj at gmx.net. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 12:15:16.000000000 -0400 +++ shadow/81811.tmp.31982 2007-06-05 14:13:13.000000000 -0400 @@ -1,15 +1,15 @@ Bug#: 81811 Product: Mono: Runtime Version: 1.2 -OS: unknown +OS: All OS Details: Status: NEW Resolution: Severity: Unknown -Priority: Major +Priority: Normal Component: remoting AssignedTo: lluis at ximian.com ReportedBy: informatique.internet at fiducial.fr QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: @@ -93,6 +93,33 @@ Created an attachment (id=19375) LogServer.tar.gz ------- Additional Comments From informatique.internet at fiducial.fr 2007-06-05 12:15 ------- the error is : Cannot create channel sink to connect to URL + +------- Additional Comments From robertj at gmx.net 2007-06-05 14:13 ------- +Hubert, if you have the sources, open the file which contains +the class RemotingAppender and replace ActivateOptions () +with this: + +public override void ActivateOptions() +{ + base.ActivateOptions(); + m_sinkObj = (IRemoteLoggingSink) +Activator.GetObject(typeof(IRemoteLoggingSink), m_sinkUrl); +} + + +The hashtable used by log4net as "channelData" is apparently +incompatible with mono: + + IDictionary state = new Hashtable(); + state["typeFilterLevel"] = "Full"; + m_sinkObj = (IRemoteLoggingSink) + Activator.GetObject(typeof(IRemoteLoggingSink), m_sinkUrl, state); + +I'm uncertain if this is correct even on MS.NET, but it +seems to work there. + +Am looking at this. + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 14:13:28 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 14:13:28 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Nor] Changed - Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605181328.2508D1AE50D@bugzilla.ximian.com> 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 robertj at gmx.net. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 14:13:13.000000000 -0400 +++ shadow/81811.tmp.32006 2007-06-05 14:13:28.000000000 -0400 @@ -10,13 +10,12 @@ Component: remoting AssignedTo: lluis at ximian.com ReportedBy: informatique.internet at fiducial.fr QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: -Cc: Summary: Log4net Remoting appender don't work with mono Description of Problem: I try to use to log4net RemotingAppender with mono (in order to create a centralised log server for all our web applications) From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 14:47:44 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 14:47:44 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Nor] Changed - Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605184744.2B18D1AE50E@bugzilla.ximian.com> 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 robertj at gmx.net. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 14:13:28.000000000 -0400 +++ shadow/81811.tmp.672 2007-06-05 14:47:44.000000000 -0400 @@ -119,6 +119,11 @@ I'm uncertain if this is correct even on MS.NET, but it seems to work there. Am looking at this. + +------- Additional Comments From robertj at gmx.net 2007-06-05 14:47 ------- +Created an attachment (id=19376) +bug-81811.diff + From bugzilla-daemon at bugzilla.ximian.com Tue Jun 5 14:49:31 2007 From: bugzilla-daemon at bugzilla.ximian.com (bugzilla-daemon at bugzilla.ximian.com) Date: Tue, 5 Jun 2007 14:49:31 -0400 (EDT) Subject: [Mono-bugs] [Bug 81811][Nor] Changed - [PATCH] Log4net Remoting appender don't work with mono In-Reply-To: Message-ID: <20070605184931.8E1E71AE50E@bugzilla.ximian.com> 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 robertj at gmx.net. http://bugzilla.ximian.com/show_bug.cgi?id=81811 --- shadow/81811 2007-06-05 14:47:44.000000000 -0400 +++ shadow/81811.tmp.746 2007-06-05 14:49:31.000000000 -0400 @@ -10,13 +10,13 @@ Component: remoting AssignedTo: lluis at ximian.com ReportedBy: informatique.internet at fiducial.fr QAContact: mono-bugs at ximian.com TargetMilestone: --- URL: -Summary: Log4net Remoting appender don't work with mono +Summary: [PATCH] Log4net Remoting appender don't work with mono Description of Problem: I try to use to log4net RemotingAppender with mono (in order to create a centralis