ColumnHeaderCollection - Listview with CF ?

  • Thread starter Thread starter HomeAutomation Freak
  • Start date Start date
H

HomeAutomation Freak

Hi Folks,


I'm trying to access all columnheaders of a listview on a form.

I can't access the listview.ColumnHeaderCollection.Item(x).text ;-(
Any ideas/suggestions/help on this topic ?
I'm using VB .NET with CF

I need to get/set every columnheader text.
(actually, I need to retrieve it, trow it trough a dictionary, and
replace the text with a translation)


Thanks in advance,
Kris
 
You can query the Columns property:-

listview.Columns(x).Text


Peter

ARGH, thanks for the answer ...

I feel so stupid, this solution is so simple ;-)
aah well, I'm used to the regular dotnet Framework,
I hope I can use that as an excuse ;-)


best regards,
Kris
 
Back
Top