1.删除C:\Documents and Settings\用户名\Application Data\Microsoft\Excel\XLSTART\下的所有文件
2.删除*.xlb文件,方法是:关闭excel----开始---搜索---输入“*.xlb”----搜索出这个文件删除它----重新启动excel。(注意,删除*.xlb文件也将删除所有工具栏和菜单栏的自定义设置!
一般在这里:
C:\Documents and Settings\用户名\Application Data\Microsoft\Excel
一般在这里:
C:\Documents and Settings\用户名\Application Data\Microsoft\Excel
如果文件没有禁用宏的话,可以运行下面的代码试一下
Application.CommandBars("ply").Enabled = true
'右键点工作表标签是否可用
Application.CommandBars("cell").Enabled = true
'右键点单元格是否可用
Application.CommandBars("toolbar list").Enabled = true
'右键点工具栏及“视图”-“工具栏”是否可用
Application.CommandBars("autocalculate").Enabled = true
'右键点状态栏是否可用
'右键点工作表标签是否可用
Application.CommandBars("cell").Enabled = true
'右键点单元格是否可用
Application.CommandBars("toolbar list").Enabled = true
'右键点工具栏及“视图”-“工具栏”是否可用
Application.CommandBars("autocalculate").Enabled = true
'右键点状态栏是否可用
转载于:https://blog.51cto.com/kaiziliu/114950