vb.net 双击listbox1中的路径 打开该路径 怎么写代码
时间: 2023-03-06 10:00:27 浏览: 110
vb中一个按钮打开指定路径exe文件的代码.txt
可以使用 ListBox1.SelectedItem.ToString() 来获取路径,然后使用 Process.Start(String) 方法来打开该路径。例如:Process.Start(ListBox1.SelectedItem.ToString())。
阅读全文
vb中一个按钮打开指定路径exe文件的代码.txt