outlook add-in open browser (edge) instead of outlook windows application - outlook

I am developing one web add-in for outlook from Visual studio
when run (debug) the outlook add-in...its open edge instead of the native Outlook Application (office 365 outlook client)
¿any trick?
Thank you

In Visual Studio you need to open the Solution Explorer window and select the web add-in project with a manifest file:
Then you need to open the Properties window and change the Start Action property choosing the right host application:

Related

Developing Outlook addin for Mac

I have already created an addin for Ms Outlook in Windows using visual studio 2010 and C#. It works fine with Ms Outlook 2007,2010,2013 and 2016 on Windows.
Now I would like to create the same addin for Outlook on Mac. I have downloaded a .pkg file of Outlook for Mac and have installed it. For activating It needs a Office 365 subscription and I have subscribed a one month free trial period.
Now to build the addin, I have surfed the internet.But I have not found any proper post related to this topic. Please help.
.NET/COM add-ins built with Visual Studio do not work on Outlook for Mac. Only the new web Outlook Add-ins (using JavaScript + HTML5 + CSS) will work. See: https://dev.office.com/docs/add-ins/overview/office-add-ins
Outlook for Mac does not support plug-ins as #Eric said. you could use office 365 apps(Office Add-ins ) or There are ways to add limited functionality to Outlook via AppleScript.

Outlook addin not installing in outlook 2013

I have developed an office365 outlook add-in and pushed it to store. It passed the test and is now available at the store. They tested it and said it is working in Outlook 2013.
I have been using it in Outlook 2013 desktop client and is working fine.
Recently one of our clients added it and is working in OWA. But it is not showing up in Outlook 2013 desktop client.
Is there any different versions in Outlook 2013?. When I click on the File menu, I see "Manage Add-ins" at the bottom of account information. But the outlook 2013 he is using has the option "Manage Apps".

Outlook 2013 and Windows key hook using SetWindowsHookEx

I'm trying to build a single key shortcut for Outlook following the code from here:
http://blogs.msdn.com/b/vsod/archive/2010/04/08/using-shortcut-keys-to-call-a-function-in-an-office-add-in.aspx
It works fine for outlook 2010 but for outlook 2013 is not working
The hook is there, if you press the key on other windows my code gets invoked but only when the Outlook 2013 window has the focus is not working
Same issue like here: C# Outlook 2013 Add-In Keyboard Events
or similar with this one
C# Global keyboard hook in Office Addin 2013
Thanks,
Marius

Outlook 2007 - How do I deploy custom toolbar and macro code?

Just wondering, do I really have to use Visual Studio to create a simple add-in/toolbar in Outlook 2007? I created a simple toolbar with a button that opens a form. Then I created some macro code in there and run it clicking the button. But now I want to save this thing and deploy it on other computers. How do I do such a thing?
Have a look at this article from MSDN Library. Its title is "Deploying a Visual Studio Tools for the Office System 3.0 Solution for the 2007 Microsoft Office System Using Windows Installer (Part 1 of 2)"
Hope this helps
Giovanni

Outlook Add-in targeting 2007 & 2010

I have an Outlook Add-in that I have developed for Outlook 2007. I am working on having this add-in work on Outlook 2010 as well. My add-in is an adjoining region on the appointment/meeting request window that displays a WPF control. The add-in installs fine on Outlook 2010 but when I go to the appointment/meeting request window I have a blank adjoining region. Any thoughts on what is preventing my WPF control from showing in Outlook 2010?
Thanks

Resources