User Activity

  • Posted a comment on discussion Help on ObjectListView

    There is a helpful solution from Rev1.0 as below: // We require a list to remember which items should stay selected private List<Item> _MultiSelectList; public Form1() { // <other stuff> _MultiSelectList = new List<Item>(); } // use this event to check which item has been clicked private void objectListView1_MouseClick(object sender, MouseEventArgs e) { objectListView1.BeginUpdate(); // any item clicked? if (objectListView1.MouseMoveHitTest.Item != null) { var item = objectListView1.MouseMoveHitTest.Item.RowObject...

  • Posted a comment on discussion Help on ObjectListView

    the row could be selected by clicking on it for now // We require a list to remember which items should stay selected private List<Item> _MultiSelectList; public Form1() { // <other stuff> _MultiSelectList = new List<Item>(); } // use this event to check which item has been clicked private void objectListView1_MouseClick(object sender, MouseEventArgs e) { objectListView1.BeginUpdate(); // any item clicked? if (objectListView1.MouseMoveHitTest.Item != null) { var item = objectListView1.MouseMoveHitTest.Item.RowObject...

  • Posted a comment on discussion Help on ObjectListView

    Hi, I set the FullRowSelect and MultiSelect property to true, but I still have to select multiple rows by pressing the Ctrl key. So, Is there a way to do multiselect without the Ctrl or shift key pressed?

  • Modified a comment on discussion Open Discussion on ObjectListView

    But it seems that the "LeftButtonClick" event has been fired after the "CellEditFinished" event when I see the StackTrace below: ~~~ at System.Windows.Forms.Control.CreateHandle() at System.Windows.Forms.ListView.CreateHandle() at System.Windows.Forms.Control.get_Handle() at BrightIdeasSoftware.NativeMethods.GetHeaderControl(ListView list) at BrightIdeasSoftware.HeaderControl..ctor(ObjectListView olv) at BrightIdeasSoftware.ObjectListView.get_HeaderControl() at BrightIdeasSoftware.ObjectListView.LowLevelHitTest(Int32...

  • Posted a comment on discussion Open Discussion on ObjectListView

    But it seems that the "LeftButtonClick" event has been fired when I see the StackTrace below: ~~~ at System.Windows.Forms.Control.CreateHandle() at System.Windows.Forms.ListView.CreateHandle() at System.Windows.Forms.Control.get_Handle() at BrightIdeasSoftware.NativeMethods.GetHeaderControl(ListView list) at BrightIdeasSoftware.HeaderControl..ctor(ObjectListView olv) at BrightIdeasSoftware.ObjectListView.get_HeaderControl() at BrightIdeasSoftware.ObjectListView.LowLevelHitTest(Int32 x, Int32 y) at...

  • Modified a comment on discussion Open Discussion on ObjectListView

    When I click on the 'Open Modal Window' button in [Main form], it shows the [subform] that is built with a data list by using the ObjectListView component. When I click on the "Age" column to edit it and changed the value in the cell to be a non zero value, then click on the blank of the ObjectListView component(if I press Enter, the exception will not come out), it popup a message. I left this message in front of all the opened windows and wait 10 seconds for the application timeout. At that time,...

  • Posted a comment on discussion Open Discussion on ObjectListView

    When I click on the 'Open Modal Window' button in [Main form], it shows the [subform] that is built with a data list by using the ObjectListView component. When I click on the "Age" column to edit it and changed the value in the cell to be a non zero value, then click on the blank of the ObjectListView component(if I press Enter, the exception will not come out), it popup a message. I left this message in front of all the opened windows and wait 10 seconds for the application timeout. At that time,...

  • Modified a comment on discussion Open Discussion on ObjectListView

    The cursor has been put behind the text by the following code when the "CellEditStarting"...

View All

Personal Data

Username:
biemowo1985
Joined:
2016-06-07 05:39:42

Projects

  • No projects to display.

Personal Tools