所以我们有一个要求用户登录的系统,它有自己的漫游配置文件。那么在这串代码中,我如何定位当前用户的文件夹?(仅供参考Excel 2010)
'WORKAROUND:
Dim PID As Double
Dim strRootPath As String
Const strExpExe = "explorer.exe"
Const strArg = " " '" /e,/root, "
'this is where i need to figure out how to target current user's documents
'// Change rootpath here
strRootPath = "C:\Data Files"
PID = Shell(strExpExe & strArg & strRootPath, 3)
该功能的其余部分做得很好......它打开文件资源管理器我只是想不出告诉它寻找当前用户的语法。