I have a listbox that displays lines from a text file. How could I make it so that I can click on an item from the listbox and remove it from the listbox and the text f
private void Read()
{
string filePath = @"//Filepath";
List<String> listOfDels = viewlist.listDeliveries();
using (var streamReader = new StreamReader(filePath, Encoding.Default))
{
while (!streamReader.EndOfStream)
{
listOfDels.Add(streamReader.ReadLine());
listBox1.Items.Clear();
listBox1.Items.AddRange(listOfDels.ToArray());
}
}
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{ //Remove line from txt file
}
Itemseach time you read a line? – Jon B Nov 30 '12 at 18:04File.ReadAllLines(filePath). – Jon B Nov 30 '12 at 18:09