blah blah blah is here! blah blah » Close

0
votes
0 answers

Recursively retrieving lists of objects

I have a tree that I am going through and am trying to recursively retrieve lists of objects and add them to a "master" list so to speak. Here's the line where I ask for the lists: [code]List<MyItem> items = GetRetractable ...

1
votes
1 answers

Binding Generic Lists

eeboy
499

Is it possible to bind a List<T> to a listbox control? I see examples that seem to do this by simply assigning the listbox's datasource property to the List<T>. However, I don't seem to have the option of a datasource property. ...

0
votes
3 answers

List Item Methods

eeboy
499

Can I somehow implement a method in a list item? For example, if this is the class I base my list off of: [code] class TestListItem { public string Name; public string Address; public TestLis ...

0
votes
0 answers

List Remove Method

eeboy
499

Is it possible to execute some code specific to my list instance when an item is removed from it? I want to re-number ID #s (a field in my list) every time an item is removed. EDIT: I think I've found what I am looking for. In my own ...

Feedback