Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ListView Not Loading - #2
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01393824
Message ID:
01393836
Views:
36
I tested your code and it works good when I am testing it.
Just a sugestion add lvwItems.BeginUpdate(); before your while loop and lvwItems.EndUpdate(); after your while loop.

Are us sure there are always atleast 3 strings (separated by ,) per line in your file?

>I cannot for the life of me see why this doesn't work. The columns are there and sized ok, and the ListItems collection is receiving the items - I just don't see anything.
>
>Anyone?
>
>
>private bool LoadCSVFile(string sFileName)
>{
>    bool bRetVal = false;
>
>    lvwItems.Items.Clear();
>
>    StreamReader oReader = new StreamReader(sFileName);
>
>    string sLine;
>    while ((sLine = oReader.ReadLine()) != null)
>    {
>        string[] aWords = sLine.Split(',');
>
>        ListViewItem oNewItem = new ListViewItem(aWords[0]);
>        oNewItem.SubItems.Add(aWords[1]);
>        oNewItem.SubItems.Add(aWords[2]);
>
>        lvwItems.Items.Add(oNewItem);
>    }
>
>    return bRetVal;
>}
>
>
Semper ubi sub ubi.
Previous
Reply
Map
View

Click here to load this message in the networking platform