private void button1_Click(object sender, EventArgs e)
{
openFileDialog2.ShowDialog();
textBox1.Text = openFileDialog2.FileName;
}
private void button2_Click(object sender, EventArgs e){
if (listBox1.Items.Contains(textBox1.Text))
{
MessageBox.Show("File akready added","Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
else
{
listBox1.Items.Add(textBox1.Text);
}
}