Hi Sir,
A) Application.CommandBars("Worksheet Menu Bar").Controls("Format").Controls("Cells...").Execute
I afraid, I cant solve it..
Its just calling the dialog box in excel 2003 shortcut method. It works perfectly for me.
May be
Code:
Application.CommandBars("Hoja de barra de menús").Controls("formato").Controls("Las células...").Excecute
will work for you..(ha ha.. Sorry.. blind guess)
(B)If we allow users to Format Cell, Excel will display the below tabs..
[pre][code]Application.Dialogs(xlDialogFormatNumber).Show
Application.Dialogs(xlDialogAlignment).Show
Application.Dialogs(xlDialogFontProperties).Show
Application.Dialogs(xlDialogBorder).Show
Application.Dialogs(xlDialogPatterns).Show
[/pre]
as these are the part of Formatting a cell.
but
as the sheet was protected, MSO, will remove the CellProtection Dialog Box
Application.Dialogs(xlDialogCellProtection).Show[/code]
Please see the attached.
https://www.dropbox.com/s/f31wz9ppl74s170/captura%20de%20pantalla%20.xlsx
Please shout on me, if I am still wrong..
