right click problem with excel

S

sedagli

i have problem with right click excel.
i have already solved some problem (cut ,copy apste etc.)
i used for this solving, macro
Application.CommandBars("Cell").Enabled = True

but i have still problem for using right click etc.
insert new sheet
move or copy

insert row or coloun

how can i solve these problem
tanhks
 
D

Dave Peterson

I'm not sure what the problem you're having, but the name of the tab menubar is
"Ply".

Application.CommandBars("Ply").Enabled = True

The name of the commandbar for the column (in normal view) is "Column". And the
"Row" commandbar is for the row.

But it may be less work to destroy all the customizations to all the toolbars
and just start from scratch.

If that's the case...

Close excel
Use windows search to find a file named:
Excel*.xlb

And move it or delete it.

You may have more than one!

Then restart excel and see if things work ok. If they do, start customizing.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top