Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I am trying to customise the Task Pane in excel. I am aware of the CommandBar object, but the features seem restricted. I want to know if I can add controls like a listbox or microsofttab control.Also i would like to know if the task pane is fully customizable or are there any restrictions thanks Bosco |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It doesn't seem to me that the Task Pane is much like any other command bar.
I think it's classified as a command bar in the Office object model just for convenience. About the only customizing I've been able to do with it is to add files to the New Workbook pane via the NewFile object. Sub AddToTaskPane() Dim x As NewFile CommandBars("Task Pane").Visible = False Set x = Application.NewWorkbook x.Add "c:\bookNew.xls", msoNew 'Next to refresh, else changes do not appear CommandBars("Task Pane").Visible = True End Sub Sub RemoveFromTaskPane() Dim x As NewFile CommandBars("Task Pane").Visible = False Set x = Application.NewWorkbook x.Remove "c:\bookNew.xls", msoNew CommandBars("Task Pane").Visible = True End Sub -- Jim Rech Excel MVP |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do you show the task pane in office 2007 | New Users to Excel | |||
Task Pane in Excel | Excel Discussion (Misc queries) | |||
Excel - task pane | Excel Discussion (Misc queries) | |||
Excel Task Pane | Excel Discussion (Misc queries) | |||
how do i get my task pane up in excel | New Users to Excel |