一、excel鼠标右键无法弹出菜单
点击开始,找到运行命令行,输入regedit,打开注册表。在左侧找到HKEY_CLASSES_ROOT目录,并展开。利用CTRL+F快捷键,查找xlsx的位置,并将默认改为Excel.Sheet.12;然后寻找pptx,将(默认)改为PowerPoint.Show.12.
1、点击开始,找到运行命令行,输入regedit,打开注册表。
2、在左侧找到HKEY_CLASSES_ROOT目录,并展开。
3、首先利用CTRL + F 快捷键,查找“xlsx”的位置,并将(默认)改为Excel.Sheet.12;然后寻找“pptx”,将(默认)改为PowerPoint.Show.12.
4、关闭注册表,回到桌面,多次刷新后,右键新建中的Word、Excel、PPT即可全部回来。
二、右键无法删除excel行和列
1退出EXCEL。
2 进入"C:Users你的电脑用户名AppDataRoamingMicrosoftExcel"文件夹(此路径为Win7环境下的路径。
如果是其他系统或者自己改过路径,请看下面这个办法,新建一个excel,点击文件>>>另存为>>>保存类型选择Excel模板,这个时候会自动定位到一个路径(如下图),这个时候模板也不用存了,赶紧把路径地址复制下来,到资源管理器中打开它。
打开后的是模板存放路径,我们要找的文件不在这里,回到父路径找到名为"Excel"的文件夹,双击进入,然后就可以看下一步了:
3 进入文件夹后,
2003 版本,删除Excel11.xlb
2007版本,删除Excel12.xlb
2010版本,删除Excel14.xlb
4、重新打开 excel,问题解决。再来说说这个xlb文件,不知其为何物,官方说法如下:文件类型:Excel ToolbarsFile扩展名为。xlb的文件是一个设置文件。
文件说明:
Stores customsettings for toolbars (also known as command bars) created inMicrosoft Excel; toolbar settings can be modified within Excel bychoosing Toolbars from the View menu; the XLB file stores thesecustom settings, including which toolbars are visible, where theyare located, and what options are available on each toolbar.XLBfiles and allow the same toolbar setup to be transferred from onecomputer to another or to be used by multiple users; they aretypically stored in the [username]Application DataMicrosoftExcelfolder..xlb
三、excel表格中右键失效
可能是你打开了某个屏蔽右键的宏
按ALT+F11,按ctrl+G,贴入,回车
application.commandbars("cell").enabled = true
如果是标签的 可看下面
一、屏蔽或显示工作表标签的右键菜单
Sub 工作表标签的右键菜单()
Application.CommandBars("Ply").Enabled = False
Application.CommandBars("Ply").Enabled = True
End Sub
二、 '屏蔽或显示单元格右键菜单
Sub 单元格右键菜单()
Application.CommandBars("cell").Enabled = False '屏蔽单元格右键菜单
Application.CommandBars("cell").Enabled = True '显示单元格右键菜单
End Sub
三、'屏蔽或显示自定义右键菜单
Sub 视图右键菜单()
Application.CommandBars("Toolbar list").Enabled = False '隐藏自定义右键菜单
Application.CommandBars("Toolbar list").Enabled = True '恢复自定义右键菜单
End Sub