Hi,
I have load a action pane to a Excel workbook, in the mean time, I double click another normal Excel file and then switch back to my VSTO Excel file. I found that the Action Pane disappeared.
How can I get it back (The action pane can't be appeared again even I press Ctrl+F1 in Excel 2003)
Thanks,

Action Pane Disappear
bcox
//sheet1.cs
// toggle DocumentActionTaskPane, can close it but not bring it back.
private void button1_click(object sender, EventArgs e)
{
if (!this.Application.DisplayDocumentActionTaskPane)
{
this.Application.DisplayDocumentActionTaskPane = true;
}
else
{
this.Application.DisplayDocumentActionTaskPane = false;
}
}
ckara
You can put it back programmatically using the ThisWorkbook_WindowActivate event. Just check the state of the DisplayDocumentActionTaskPane property:
if (!ThisApplication.DisplayDocumentActionTaskPane)
{
ThisApplication.DisplayDocumentActionTaskPane = true;
}
Langoti
just another SSISy