private void listBox1_DoubleClick(object sender, EventArgs e)
{
string path = Path.GetDirectoryName(listBox1.SelectedItem.ToString());
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = path;
process.Start();
}How to turn on automatic file selection when I open the specified folder? ( I double click on selecteditem of listbox, it shows the folder with files and one file which is selected).Help :crying:


Sign In
Create Account


Back to top









