How can I modify the Office Custom Task Pane menu? - c#

I'm making a Custom Task Pane for MS Word using Visual Studio (C#), and would like to add an option to the drop-down menu that, as far as I can tell, appears on all such task-panes. This is the menu I mean.
Is there a way to add an option to the default "Move, Size, Close"?

Sorry, but no, you cannot do this.
The Office add-in model is such that you only control the web application portion of the experience. Everything else is controlled by Office.
With the new web-based add-in model, you have much less control over Office itself than previous models.

Related

Searchable Combobox in Office Ribbon Control (Addin Express)

I'm developing an outlook addin using Addin Express Library. I'm currently using the adxribboncontrol.I need to implement ability to search the control based on user input.For a normal winforms control this can be easily implemented as suggested in this SO question Selecting an item in comboBox by typing
But i dont know how to implment this is office ribbon control.The control does not have the relavent properties.How can i get over this issue.
The Fluent UI (aka Ribbon UI), nor Add-in Express, doesn't provide anything for that. It is not possible on the ribbon. It has a limited number of controls.
Instead, I'd suggest creating a view/form region in Outlook where you can place any .net controls with the required functionality. See Advanced Outlook view and form regions for more information.

Create Add-In for Outlook 2013 for add a Button

Good morning,
my company is looking for a solution in order to distribute an add-in for Outlook 2013 that add a button in the ribbon. I want to create an add-in for Outlook 2013 and I saw that is possible using Visual Studio (I use VS 2013 or 2010) but I don't understand how to add a button in the ribbon (in particular in Home section) and execute a macro when I click on the button (the macro is already created). I read this tutorial https://msdn.microsoft.com/en-us/library/cc668191.aspx and this worked. Someone can help me with some piece of code(c#)?
Thanks for your help
VSTO provides two main ways for customizing the Ribbon UI:
Using the Ribbon designer. See Walkthrough: Creating a Custom Tab by Using the Ribbon Designer for more information.
Using the Ribbon XML markup. See Walkthrough: Creating a Custom Tab by Using Ribbon XML for more information.
You need to specify the idMso attribute of the built-in tab if you need to add your custom controls there. See Office 2013 Help Files: Office Fluent User Interface Control Identifiers for control IDs.
Finally, I'd suggest moving your VBA macro to the add-in. It will improve the overall performance and allows to use the BCL classes (a wide varioety of controls and components) for getting the job done. Moveover, you will be able to deplay the add-in easily. VBA macros are not designed for deployiong on multiple PCs.

Add-in for Visio 2010

I require assistance for the following
I would like to create an add-in for Microsoft Visio 2010 to zoom individual shapes. To achieve this I would like to create a TreeView (using Visual Studio 2010). From this control, based on the selection, either zoom the entire diagram or individual shapes.
I have tried custom task panes but its not possible for Visio to extend custom task panes.
Any suggestions are most welcome.
Been a long time since I've done an addin for Visio, but you may have luck checking here. Go down where it says "Managed Code".
Here is some more info: Overview of Add-ons and COM Add-ins in Visio 2007
and another related answer: how to develop an add-in for visio

CommandBars in outlook 2010

so I've noticed that CommandBars appear in tabAddIns in outlook 2010 by default. Is there any way I can get them to appear in my custom ribbon tab instead?
If it is impossible or very challenging, I welcome suggestions for easier ways to achieve something similar.
You can create a custom ribbon tab with the Ribbon Designer and move your CommandBar items to be ribbon buttons.
An decent example can be found http://msdn.microsoft.com/en-us/library/bb386104.aspx
You can't control where CommandBar buttons go. That's a "compatibility support" feature of Outlook (and the rest of Office actually) intended only to allow older addins to continue to run and have they're buttons accessible. If you're targeting 2010, you should generally avoid the old CommandBar* objects, and use the ribbon customization instead.
If you require Office 2007/2003 support (which I assume is the reason you have the command bar's) then you ideally need to check the MajorVersion of the office interop dll that is running.
Then you can do soemthing like:
string majorVersionString = Globals.ThisAddIn.Application.Version.Split(new char[] { '.' })[0];
int majorVersion = Convert.ToInt32(majorVersionString);
if (majorVersion < 14)
{
//Register CommandBar
}
Then also create a ribbon targeting the OutlookExplorer ribbon. Because only office 2010 will request that ribbon type, then it will only work for Office 2010.
See http://msdn.microsoft.com/en-us/library/bb398246.aspx for how to create ribbon xml ribbons. The ribbon ID you are after is Microsoft.Outlook.Explorer. More information about extending the Outlook explorer ribbon can be found at http://msdn.microsoft.com/en-us/library/ee692172.aspx#OfficeOLExtendingUI_Explorer
EDIT:
More information about multitargeting multiple versions of Office is available at http://blogs.msdn.com/b/vsto/archive/2010/06/04/creating-an-add-in-for-office-2007-and-office-2010-that-quot-lights-up-quot-on-office-2010-mclean-schofield.aspx

C# Outlook Addin w/ WPF

I have looked at several tutorials on writing general Outlook add-ins, and have gotten simple examples to work: items in menu, context menu, ribbons, etc.
Many of Microsoft's documentation has send me in circles, or is in VB, so I have run into some questions with what we are trying to accomplish.
Is there a way to add a custom control below the Subject line in a new email? We need to supply a drop-down and add an additional header to emails sent for email tracking. Right now the best I have gotten is adding a CommandBarButton in the "Add-ins" tab of the Ribbon, is there a better method?
Will we run into any issues installing for multiple versions of outlook? (Will only 2007 and higher work?)
Can you host WPF controls directly in a Ribbon, etc.? I know that WPF popup windows work just fine when shown from a CommandBarButton.
Are there some good links out there for what we're trying to do?
2: Multi-version support is a PITA. The hedge-your-bets approach is to develop on a PC running the version of Outlook you want to support; thus you may have multiple setup packages for each supported version. Everybody tries to get around this though, but I've used this approach with success:
Version-Specific UI in Add-ins - Andrew Whitechapel - Site Home - MSDN Blogs:
http://blogs.msdn.com/b/andreww/archive/2008/09/02/version-specific-ui-in-add-ins.aspx
4: Essential resources:
Visual Studio Tools for Office For Office and Outlook for Developers Forums on MSDN
OutlookCode.com
(FYI, I work for Add-in Express)
No, not without implementing the entire message window.
We have to make 2 projects for 2007 and 2010, we are skipping 2003 and below b/c it is much more difficult and would be rarely used.
Can't host WPF in a Ribbon, we're going to display a WPF popup from a Ribbon button press.
Best thing I've found is to just follow the project template in Visual Studio and mess around.
Overall, our add-in is going to do the following:
Make 2 projects for 2010 and 2007 that share a "Shared" assembly
All reusable work is done in the shared assembly
WPF is only displayed via popup windows (you can do a custom task pane, but it doesn't make sense for our add-in)

Categories

Resources