Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm looking for a list of all the available commandbars in Excel 2007. For example CommandBars("Cell") is one of them. Thank you |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub AAA()
Dim N As Long With Application.CommandBars For N = 1 To .Count Cells(N, 1).Value = .Item(N).Name Next N End With End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Synapse" wrote in message ... Hi, I'm looking for a list of all the available commandbars in Excel 2007. For example CommandBars("Cell") is one of them. Thank you |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you. I've printed the list. But is there a way to have a description of
each ? Do you know the one for the the cell edit mode context menu ? "Chip Pearson" wrote: Sub AAA() Dim N As Long With Application.CommandBars For N = 1 To .Count Cells(N, 1).Value = .Item(N).Name Next N End With End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Synapse" wrote in message ... Hi, I'm looking for a list of all the available commandbars in Excel 2007. For example CommandBars("Cell") is one of them. Thank you |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Never mind, I've found it. It was "Formula Bar", a very implicit name ^^
"Synapse" wrote: Thank you. I've printed the list. But is there a way to have a description of each ? Do you know the one for the the cell edit mode context menu ? "Chip Pearson" wrote: Sub AAA() Dim N As Long With Application.CommandBars For N = 1 To .Count Cells(N, 1).Value = .Item(N).Name Next N End With End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Synapse" wrote in message ... Hi, I'm looking for a list of all the available commandbars in Excel 2007. For example CommandBars("Cell") is one of them. Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Where is a list of Command Button uses? | Excel Discussion (Misc queries) | |||
Complete list of Excel Command line switches/parameters | Excel Programming | |||
How do I create a command from a list box | Excel Discussion (Misc queries) | |||
list command | Excel Programming | |||
Command to jump to last row in list not working | Excel Programming |