C
Calebmei
Hi,
As VSTO documentation (and me spending a week ) confirms
CustomTaskPanes is only supported in OL 2007, but not OL2003.
And the closest we can do in OL 2003 is to add an anchored commandBar
with Windows Form Control to simulate the custom task pane.
Anyone has any luck with anchor commandbar with Windows Form approach?
I am unable to add msoControlPane [as suggest from MSDN, only popup
menu and 4 other types are supported in
CommandBar.Controls.Add()]
For example,
Office.CommandBarControl MyButton;
MyButton =
commandbar.Controls.Add(Office.MsoControlType.msoControlPane, missing,
missing, missing, true);
If no way to work around, is ADX a good choice? Seems like Add-in
express is the only one offer such feature, are there alternatives?
Thanks in advance.
Cheers,
Tom
As VSTO documentation (and me spending a week ) confirms
CustomTaskPanes is only supported in OL 2007, but not OL2003.
And the closest we can do in OL 2003 is to add an anchored commandBar
with Windows Form Control to simulate the custom task pane.
Anyone has any luck with anchor commandbar with Windows Form approach?
I am unable to add msoControlPane [as suggest from MSDN, only popup
menu and 4 other types are supported in
CommandBar.Controls.Add()]
For example,
Office.CommandBarControl MyButton;
MyButton =
commandbar.Controls.Add(Office.MsoControlType.msoControlPane, missing,
missing, missing, true);
If no way to work around, is ADX a good choice? Seems like Add-in
express is the only one offer such feature, are there alternatives?
Thanks in advance.
Cheers,
Tom