View Single Post
  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi

Run this macro

Sub test()
Dim Cbar As CommandBar
Dim BCOUNT As Long
BCOUNT = 0
For Each Cbar In Application.CommandBars
If Cbar.BuiltIn = True Then
BCOUNT = BCOUNT + 1
End If
Next
MsgBox BCOUNT
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl



"RAJEEV CHADHA" wrote in message m...
Hi,
Can anyone tells me that how many total built in commands are there in excel.

Rajeev