Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78931 --- shadow/78931 2006-07-28 19:27:31.000000000 -0400 +++ shadow/78931.tmp.20862 2006-08-14 18:10:21.000000000 -0400 @@ -10,13 +10,12 @@ Component: Windows.Forms AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: --- URL: -Cc: Summary: Reflector doesn't work anymore (ScrollBar AE) Reflector doesn't start anymore. All you get is a System.ArgumentException caused by ScrollBar: Exception has been thrown by the target of an invocation. @@ -216,6 +215,34 @@ ------- Additional Comments From [EMAIL PROTECTED] 2006-07-28 19:27 ------- Ok, I am unassigning this bug since its a listview crash. Also I can't duplicate here :-s. + +------- Additional Comments From [EMAIL PROTECTED] 2006-08-14 18:10 ------- +I am getting this exception when I resize a window with a listview. +Below is a sample app. Just resize the window until the mouse point +is above the origin (top left) of the window. + +using System; +using System.Windows.Forms; + +public class T : Form +{ + public T () + { + ListView listView1 = new ListView(); + listView1.Dock = DockStyle.Fill; + + ListViewItem item1 = new ListViewItem("item1"); + listView1.Items.Add ( item1 ); + + Controls.Add ( listView1 ); + } + + static void Main() + { + Application.Run(new T()); + } +} + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
