The system now seems to contact the redmine server and correctly lists the projects in the pulldown.
However, trying to change the pulldown results in a crash. And the main window area is blank, which I'm not sure if that's the intended behavior.
---------------------------------
Observed unhandled exception: System.NotImplementedException: The requested feature is not implemented.
at System.Windows.Forms.DataGridView.AutoResizeColumn (Int32 columnIndex, DataGridViewAutoSizeColumnMode autoSizeColumnMode, Boolean fixedHeight) [0x00000]
at System.Windows.Forms.DataGridView.AutoResizeColumns (DataGridViewAutoSizeColumnsMode autoSizeColumnsMode, Boolean fixedHeight) [0x00000]
at System.Windows.Forms.DataGridView.AutoResizeColumns (DataGridViewAutoSizeColumnsMode autoSizeColumnsMode) [0x00000]
at (wrapper remoting-invoke-with-check) System.Windows.Forms.DataGridView:AutoResizeColumns (System.Windows.Forms.DataGridViewAutoSizeColumnsMode)
at Nohal.Redmine.Client.RedmineClientForm.FillForm (Nohal.Redmine.Client.FormData data) [0x00000]
at Nohal.Redmine.Client.RedmineClientForm.ComboBoxProject_SelectedIndexChanged (System.Object sender, System.EventArgs e) [0x00000]
at System.Windows.Forms.ComboBox.OnSelectedIndexChanged (System.EventArgs e) [0x00000]
at System.Windows.Forms.ComboBox.set_SelectedIndex (Int32 value) [0x00000]
at System.Windows.Forms.ComboBox+ComboListBox.OnMouseUp (System.Windows.Forms.MouseEventArgs e) [0x00000]
at System.Windows.Forms.Control.WmLButtonUp (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.ComboBox+ComboListBox.WndProc (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000]
at System.Windows.Forms.XplatUIX11.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000]
at System.Windows.Forms.XplatUI.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000]
at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000]
at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000]
at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000]
at Nohal.Redmine.Client.Program.Main () [0x00000]
---------------------------------------
I'm not familiar with .NET, so I don't know if the unimplemented behavior is in your code, or more likely the mono library i'm using.
FYI, I'm on Ubuntu 8.10 64bit. If it would be helpful, I can give you the versions of the packages I've got, but a quick listing of mono-related packages brings up quite a bit, probably not useful.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, the problem is quite obvious, the version of mono you have installed does not implement the automatic resizing of columns in a grid so I suppose it's not the recent 2.4 I use for testing. There's no need to know which particular version of mono you have installed, I will just implement a workaround for these GUI related problems in the next version. The next version will be out as soon as I'm done with the ticket creation functionality later this week.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The system now seems to contact the redmine server and correctly lists the projects in the pulldown.
However, trying to change the pulldown results in a crash. And the main window area is blank, which I'm not sure if that's the intended behavior.
---------------------------------
Observed unhandled exception: System.NotImplementedException: The requested feature is not implemented.
at System.Windows.Forms.DataGridView.AutoResizeColumn (Int32 columnIndex, DataGridViewAutoSizeColumnMode autoSizeColumnMode, Boolean fixedHeight) [0x00000]
at System.Windows.Forms.DataGridView.AutoResizeColumns (DataGridViewAutoSizeColumnsMode autoSizeColumnsMode, Boolean fixedHeight) [0x00000]
at System.Windows.Forms.DataGridView.AutoResizeColumns (DataGridViewAutoSizeColumnsMode autoSizeColumnsMode) [0x00000]
at (wrapper remoting-invoke-with-check) System.Windows.Forms.DataGridView:AutoResizeColumns (System.Windows.Forms.DataGridViewAutoSizeColumnsMode)
at Nohal.Redmine.Client.RedmineClientForm.FillForm (Nohal.Redmine.Client.FormData data) [0x00000]
at Nohal.Redmine.Client.RedmineClientForm.ComboBoxProject_SelectedIndexChanged (System.Object sender, System.EventArgs e) [0x00000]
at System.Windows.Forms.ComboBox.OnSelectedIndexChanged (System.EventArgs e) [0x00000]
at System.Windows.Forms.ComboBox.set_SelectedIndex (Int32 value) [0x00000]
at System.Windows.Forms.ComboBox+ComboListBox.OnMouseUp (System.Windows.Forms.MouseEventArgs e) [0x00000]
at System.Windows.Forms.Control.WmLButtonUp (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.ComboBox+ComboListBox.WndProc (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000]
at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000]
at System.Windows.Forms.XplatUIX11.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000]
at System.Windows.Forms.XplatUI.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000]
at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000]
at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000]
at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000]
at Nohal.Redmine.Client.Program.Main () [0x00000]
---------------------------------------
I'm not familiar with .NET, so I don't know if the unimplemented behavior is in your code, or more likely the mono library i'm using.
FYI, I'm on Ubuntu 8.10 64bit. If it would be helpful, I can give you the versions of the packages I've got, but a quick listing of mono-related packages brings up quite a bit, probably not useful.
Hi, the problem is quite obvious, the version of mono you have installed does not implement the automatic resizing of columns in a grid so I suppose it's not the recent 2.4 I use for testing. There's no need to know which particular version of mono you have installed, I will just implement a workaround for these GUI related problems in the next version. The next version will be out as soon as I'm done with the ticket creation functionality later this week.