Hello I have been trying to get when a user selects a Row im tying to get the information from the 'Packet #' to mean something else in the Discription row

ex If the packet # = "103, 1" the Discription should display 'Advanced Sheet'

This is what i have to add items to the list.

                        while ((line = reader.ReadLine()) != null)
                        {
                            String[] lineData = line.Split(new char[] { ' ' });

                            //This allows the data to be imputed into the rows that are needed
                            subItemTexts[0] = lineData[0];
                            subItemTexts[1] = lineData[1];
                            subItemTexts[2] = lineData[2];
                            subItemTexts[3] = lineData[3];
                            subItemTexts[4] = lineData[4];
                            //subItemTexts[5] = lineData[5];


                            newItem = new ListViewItem(subItemTexts);

                            LV_Reports.Items.Add(newItem);

if you can help i would be most happy!
thank you all

Just to clarify, you want to set the text in one row based on the text in another. Something like:

if(subItemTexts[0] = "103, 1")
    subItemsText[5] = "Advanced Sheet"

If not, can you calrify what you're trying to accomplish

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.