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