Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
71 views

Storing the selection changed behaviour of Word bookmark in XML format

I am attempting to put together a Word application using VSTO that, amongst other things would contain bookmarks that, when clicked, display information in a custom task pane. I would like to be able ...
2
votes
1answer
54 views

Put new component on JXTaskPane

The JXTaskPane used in Java Swing has a title bar. There is a expand/shrink button in it. I would like to be able to add my own actions in the titlebar that would appear beside the expand/shrink ...
2
votes
3answers
146 views

How to get the Custom Task Pane Object on the Ribbon control Class

Developing a Excel vsto project, how could I handle the Custom Task Pane in the Class which is a Ribbon Control. For example, I would like to show the Custom Task Pane when I click the button of the ...
2
votes
1answer
359 views

Drag-and-drop to custom task pane in Excel VSTO

Arr, I am stuck! I'm writing an Excel add-in that opens up a custom task pane (it's a data analysis tool type of thing). In the interest of productivity I want to enable the user to drag an object, ...
1
vote
1answer
132 views

C#. Excel Addin. Can't reposition floating custom task pane

When creating a custom task pane (_CustomTaskPane MSDN) and setting its DockPosition to floating, I want to specify the Top and Left properties of the window appeared. As Office COM APIs do not ...
1
vote
1answer
176 views

Docking Custom Task Panes

I have developed two custom task pane addins to be used in Excel 2007. I set one to DockPosition = Left and the other to DockPosition = Top. This puts the Top pane all the way across the top, with the ...
0
votes
0answers
19 views

Get user selected text from InfoPath Add-in

I have created a custom task pane for InfoPath 2010. In this task pane when I click a button I need to get the text that is currently selected by the user in the form. As far as I've seen there is ...
0
votes
1answer
76 views

Custom task pane support in Office 2003

I have created a C++ Office 2007/2010 add-in that exposes a custom task pane via ICustomTaskPaneConsumer and by implementing an ActiveX control. This works perfectly. Now I want to include support ...
0
votes
0answers
43 views

vs 2010 CustomTaskPane doest resize in Outlook 2007/2010 Add In

So i'm fixing some bugs of an Outlook add-in and im stuck at this problem. When debugging on Outlook 2007 ( or install on 2010 ) the add in wont resize properly. There are 2 bugs occuring: The ...
0
votes
2answers
97 views

Can't delete E-Mails after using a docked Custom Task Pane in Outlook

I'm developing an Outlook 2010 Add-In in C# which adds a "docked" Custom Task Pane to the Outlook Explorer window. Now i'm facing the problem that it isn't possible to delete an e-mail (with delete ...
0
votes
0answers
83 views

Hiding CustomTaskPane instance in Print Preview form (Excel 2007)

I am developing an Excel Add-In which fits to Excel 2007. I am developing in VB.NET using the namespaces Microsoft.Office.Tools.Ribbon and Microsoft.Office.Interop.Excel and it has a Ribbon of its ...
0
votes
1answer
147 views

Setting the Parent on a CustomTaskPane control?

I'm creating a CustomTaskPane for a Word plugin, and putting some third party controls on the control that's on the CustomTaskPane. However, those controls are expecting to be part of a .net Form, ...
0
votes
1answer
369 views

CustomTaskPanes and Invoking NewMailMessage from outside Outlook

I have a ribbon button that appears on tabNewMailMessage in Outlook's compose email form, this button toggles the visibility of a CustomTaskPane stuck to the side of the form. In normal practice, ...
0
votes
1answer
169 views

Add a WPF UserControl to a TaskPane

I am developing an addin to Microsoft Outlook. The following code works fine if I use an winforms UserControl: private void ThisAddIn_Startup(object sender, System.EventArgs e) { var ...
0
votes
1answer
226 views

Display HTML page in Office 2003 or 2007 task pane via VBA

Is it possible to display an HTML page in an Office 2003 and/or 2007 task pane via VBA? Background: We have a complicated configuration file that our users maintain in Word (using a real editor is ...