Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dascandy

  1. dascandy

    Pointless ItemCheck events in ListView derivate

    Nope, it still sends out 33000 requests upon focussing the tab page.
  2. dascandy

    ListViewItem Remove and then reuse

    Nope, ListViewItem's have no Visible member: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsListViewItemClassTopic.asp If only...
  3. dascandy

    convert Control to RadioButton

    Similar to c++ foreach (Control c in gbOptions.Controls) { if (c is RadioButton) { RadioButton rb = (RadioButton)c; Console.WriteLine(rb.Name); } } which in c++ is something like (don't do managed C++, only plain): for (Controls::iterator b =...
  4. dascandy

    ListViewItem Remove and then reuse

    I have a filtered ListView. It removes items from the ListView itself and then adds them to an ArrayList for turning off the filter again. The problem is that each time I use remove on the Items collection to remove the given item, it finalizes it and calls in the garbage collector. I'd like to...
  5. dascandy

    Pointless ItemCheck events in ListView derivate

    Oh, I should add: The items are added in around 20 AddRanges. When I first focus the tab, then add the items, and then refocus it, it doesn't fire any of those events.
  6. dascandy

    Pointless ItemCheck events in ListView derivate

    I have a program in which a listview in detail view is displayed on a not directly visible tab. I add a load of items to it (around 33000) and then focus the tab on which it is. At that time, it sends out 33000 ItemCheck events, one for each item, in which it deselects it. The items were added...

Part and Inventory Search

Back
Top