Donate Share

DotNetLib

Code

Programming Languages: C#, C++

License: BSD License

Repositories

browse code, statistics svn co https://dotnetlib.svn.sourceforge.net/svnroot/dotnetlib dotnetlib

browse code, statistics, last commit on 2008-05-31 cvs -d:pserver:anonymous@dotnetlib.cvs.sourceforge.net:/cvsroot/dotnetlib login

cvs -z3 -d:pserver:anonymous@dotnetlib.cvs.sourceforge.net:/cvsroot/dotnetlib co -P modulename

Show:

What's happening?

  • Followup: RE: GetItemAt() returns incorrect item

    Hello, This was happening as a scroll bar was showing that threw out the Y coordinate. I had modify the library to allow access to the vscrollbar and include its value in the GetItemAt calculation... GetItemAt(point.Y - this.HeaderHeight + VScrollBar.Value) JP.

    2009-03-03 15:04:01 UTC by jpogorman

  • GetItemAt() returns incorrect item

    Hello, I am trying to get the correct drag and drop ContainerListViewItem. I was using this code successfully to get the drag and drop item. I adjusted the Y point to take into account the header height as without it GetItemAt was returning the node below the one I dropped onto... protected override void OnDragDrop(WinForms.DragEventArgs e) { Point point = this.PointToClient(new...

    2009-02-26 09:14:38 UTC by jpogorman

  • Followup: RE: Control Issues

    From what I can tell so far the change to the insert method seems to have fixed all the collection issues I was experiencing. Nick.

    2009-02-05 17:32:43 UTC by euphoricz

  • Followup: RE: Control Issues

    I believe I have fixed one of the issues above by updating the insert method of the ContainerListViewItemCollection Class - see the code below. public void Insert(int index, ContainerListViewItem item) { if (item == null) throw new ArgumentNullException("item"); if (_data.Count != 0 && index > 0) {.

    2009-02-05 15:02:17 UTC by euphoricz

  • Followup: RE: Control Issues

    As it turns out the real problem with the collections seems to exist when adding a new item to the treelistview using lsvTree.items.insert(index, text) instead of lsvTree.items.add(text). It seems as though when insert is used items no longer have updated knowledge of their parent items, previous items etc. If I remove an item and insert it an item below then attempt to move another item above...

    2009-02-05 13:43:42 UTC by euphoricz

  • Control Issues

    First off I would like to start by saying I really appreciate the development that is being done on this control, this is an incredible hybrid control which greatly helps me in my development environment. There are a few issues which I would like to mention for the sake of the controls stability. Detailed Event Handlers: There are quite a few event handlers which are very generic, it...

    2009-02-02 20:05:35 UTC by euphoricz

  • ContainerListViewItem.Clone

    In ContainerListViewItem.Clone(), the capacity of the _subItems Collection was not set, so an ArgumentOutOfRangeException is raised, when setting SubItems. Previous code: for(int index = 0; index < _subItems.Count; ++index) lvi._subItems[index] = _subItems[index].Clone(); My guess: for(int index = 0; index < _subItems.Count; ++index) lvi._subItems.Add(_subItems[index].Clone());...

    2008-12-15 00:08:40 UTC by unipolar

  • DotNetLib

    jockersoft committed patchset 110 of module DotNetLib to the DotNetLib CVS repository, changing 3 files.

    2008-05-31 16:54:37 UTC by jockersoft

  • Comment: Error Message Displayed

    I'm receiving that error from the Designer is VS2008 too.

    2008-05-26 12:49:02 UTC by nobody

  • DotNetLib

    jockersoft committed patchset 109 of module DotNetLib to the DotNetLib CVS repository, changing 17 files.

    2008-05-06 08:30:41 UTC by jockersoft

Our Numbers