[Mono-bugs] [Bug 78931][Nor] Changed - Reflector doesn't work anymore (ScrollBar AE)
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Mon Aug 14 18:10:21 EDT 2006
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 scottell.lists at gmail.com.
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: peter at novonyx.com
ReportedBy: alex.olk at googlemail.com
QAContact: mono-bugs at ximian.com
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 jackson at ximian.com 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 scottell.lists at gmail.com 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());
+ }
+}
+
More information about the mono-bugs
mailing list