Questions tagged [customtaskpane]
110 questions
1
vote
1 answer
VSTO VB tree view Node = Sheet tab color
I'm building a VSTO project with a simple action pane containing a treeview. Coming from VBA, things are similar, but not the same and I'm a bit confused.
What I want to do is load all sheets to the tree view, and give each node the color of the…

Dumitru Daniel
- 571
- 4
- 19
1
vote
0 answers
Why change file2 status, file1 also changes in Ribbon on word add in VSTO
I've create two buttons in my Word add-in ribbon : Status button with default "Open" and ChangeStatus button.
I open two file to test. I click ChangeStatus button file2 to Close, file1 also changes to Close.
How can I force the file 1 to display…

Tứ Nguyễn Duy
- 31
- 4
1
vote
2 answers
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 key) after clicking on the Custom Task Pane. First…

arcticwolf
- 21
- 4
1
vote
0 answers
Disable or Hide CutomTask Pane close button VSTO addin word document
I am using a CutomTask Pane in Word as an C# .NET ADDIN.
The custom task pane has a close button(X) at the right corner.
I need to not allow the user to close the Task Pane or disable the Close button(X) .
Can anyone have any idea ?
Is there any way…

Abhay Kalariya
- 61
- 6
1
vote
0 answers
Outlook Web Office AddIn - Save/Send button event handle using Custom Office AddIn (Taskpane) through code
I have created one office AddIn taskpane for new appointment/meeting in outlook calendar and I want to click send/save button from my custom AddIn using code.
I have created office AddIn using…

Demo1
- 11
- 2
1
vote
1 answer
VSTO Add-In CustomTaskPane opens itself after upgrading to Word 2016/2019
We've developed a Word VSTO Add-In for Word 2010 with CustomTaskPanes and MVVM Support through VSTOContrib.
After upgrading to Word 2016/2019 our CustomTaskPanes show up randomly without any action from the user.
It seems like that Word notices when…

julianstark999
- 3,450
- 1
- 27
- 41
1
vote
0 answers
Create Word Custom Task Pane using VB6
We have a already designed Word ribbon bar and we have our own styles set. We have a ribbon bar button called 'Styles' and when click on it, Styles model dialog will pop-up.
Now I need to create a non-model dialog to show the Styles as like as the…

ApsSanj
- 549
- 7
- 23
1
vote
0 answers
Office task pane window.open() -> browser popup window closes when document closes
We have a custom Office task pane and when the user clicks a certain button in the pane, it launches a popup window via javascript window.open(). This all works fine, however when the document is closed, the browser popup window also closes causing…

BNeff
- 11
- 1
1
vote
1 answer
VSTO: How to implement Office Standard Custom Task Pane TabContainer
I'm looking for a simple way to implement the standard office custom Task pane TabContainer which looks like this one:
Standard Office TabContainer
(1) is easy to implement
(2) with the TabContainer there is a way to use Icons also - but they don't…

Roger Heckly
- 51
- 5
1
vote
0 answers
VBA Excel TaskPane
I am looking simplest way to enrich my VBA excel application.
And looking for to use TaskPane functionality
Is was any way to create TaskPane form from VBA or with using VBA?

Evgeniy Rasyuk
- 287
- 1
- 2
- 12
1
vote
2 answers
Slide animation when showing/hiding CustomTaskPane in VSTO
I have a CustomTaskPane in my VSTO project that I can show/hide using .Visible = true/false property. However it's an ordinary showing/hiding element with no animation whatsoever.
However the "Smart Lookup" button, that comes with Excel 2016, also…

Mike
- 842
- 1
- 9
- 31
1
vote
1 answer
Excel 2016 custom task pane
I have problem with one CustomTaskPane in mutiple Excel 2016 documents. I create and display task pane with my WinForm user control
Dim cll As cMyControl = New cMyControl
Private Sub ThisAddIn_Startup() Handles Me.Startup
…

milos
- 103
- 1
- 11
1
vote
1 answer
HTML content in Custom Task Pane Outlook VSTO ADD in
Is there any way to display a web page (or add HTML code) in the Custom Task Pane in Outlook 2016 COM (VSTO) AddIn similar to what we do in Iframes?

Krishna Khowal
- 49
- 8
1
vote
1 answer
How to add a grid to UserControl programmatically?
I have a WPF User Control which contains nothing in it, and I'm passing a grid control to it, how do I add that grid control to the empty User Control?

aggy
- 163
- 1
- 2
- 14
1
vote
1 answer
How to release cursor after inserting text into Word Document using C#?
I'm creating a MS Word VSTO addin (Custom Task Pane) that inserts some text into a Word Document on the click of a button. However, I find that after the button is clicked and the text is inserted into the Document, the cursor doesn't automatically…

razor_ray
- 55
- 1
- 11