help with fuctions [RESOLVED]
Has this been done before?
I want to take a datareader and send that to a function along with a listview control as params. I would like the function to take the data in the reader and create a listview item and subitems in the listview parmeter. I thought making it as a function would allow returning true or false easy.
is this a feasable function? where would i start?
I figure something like this:
[vbode]
public function FillListView(lst as ListView, items as Collection) as boolean
end function
[/Highlight]
that's as far as i got.