以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  请教:打开目录后如何定位(选中)到指定的文件?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=127143)

--  作者:y2287958
--  发布时间:2018/11/6 16:52:00
--  请教:打开目录后如何定位(选中)到指定的文件?
Dim proc As new Process
proc.File = FileSys.GetParentPath(e.Row("文件路径"))
proc.Start

用以上代码打开目录后,如何定位(选中)指定的文件(e.Row("文件路径"))?

--  作者:有点甜
--  发布时间:2018/11/7 9:39:00
--  

参考

 

Dim Proc As New Process
Dim wj As String = "d:\\test.xls"
Dim rs As String = "  /select," & wj & " "
\'output.Show(rs)
Proc.File = "explorer.exe" \'指定要执行的文件
Proc.Arguments = rs \'指定命令行参数
Proc.Start()


--  作者:y2287958
--  发布时间:2018/11/7 10:51:00
--  
图片点击可在新窗口打开查看