开发者

execute file .lnk in vb.net

开发者 https://www.devze.com 2023-02-03 20:42 出处:网络
i nee开发者_如何学Cd to execute a .lnk file in vb.net (lnk file that points at an exe file). how can i do?

i nee开发者_如何学Cd to execute a .lnk file in vb.net (lnk file that points at an exe file). how can i do?

shell("path/file.lnk")

don't works

thx you for help.


You didn't indicate your platform, but on Windows 7, use Process.Start to launch an application using a .lnk file:

Process.Start(pathToLink)
0

精彩评论

暂无评论...
验证码 换一张
取 消