使用VBA将Excel 2013工作簿固定到任务栏

时间:2016-02-23 22:49:59

标签: excel vba excel-vba

是否有办法使用VBA将工作簿固定到Excel固定项目列表?

我已经研究过互联网的高低,但似乎找不到任何好的例子,或者即使方法可行?

谢谢!

enter image description here

1 个答案:

答案 0 :(得分:0)

感谢Tim Williams在上面的评论中,我能够获得一个VBA代码来添加/删除可以固定和解除项目的注册表项。

If RegKeyExists("HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Access\Security\Trusted Locations\BEApplication\") = False Then
        ' Code for adding registry key
            Dim myWS As Object, strPath
            strPath = <Folder Path>
            Set myWS = CreateObject("WScript.Shell")

            myWS.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Access\Security\Trusted Locations\BEApplication\Path",strPath,"REG_SZ"


    Else
        ' Key exists - do nothing
End If