Does anyone know how to create an array of listview items
with a variable length at runtime.

ListViewItem[] items = new ListViewItem[length] ????
This does not work.

thanks

Re: Listview items by Ilya

Ilya
Thu Aug 19 04:43:10 CDT 2004

May be do you mean this -
ListViewItem* items = new ListViewItem[length]

?

"Schwalm" <anonymous@discussions.microsoft.com> wrote in message
news:8aca01c4854e$55db3870$a601280a@phx.gbl...
> Does anyone know how to create an array of listview items
> with a variable length at runtime.
>
> ListViewItem[] items = new ListViewItem[length] ????
> This does not work.
>
> thanks