office-addins

Clarify what is safari classic mode?

淺唱寂寞╮ 提交于 2021-02-20 03:14:12
问题 My outlook add-in submission failed because my add-in doesn't load successfully in safari classic mode (as per email received from outlook validation team). It is working nicely on safari Version 13.0.5. 回答1: I have been trying to get clarification on how to test this also -- at least I think we're talking about the same thing. In our latest report from Microsoft, this is referred to as "Safari in Outlook Web App Classic mode." I've also seen the wording "classic experience." My understanding

Clarify what is safari classic mode?

喜欢而已 提交于 2021-02-20 03:03:23
问题 My outlook add-in submission failed because my add-in doesn't load successfully in safari classic mode (as per email received from outlook validation team). It is working nicely on safari Version 13.0.5. 回答1: I have been trying to get clarification on how to test this also -- at least I think we're talking about the same thing. In our latest report from Microsoft, this is referred to as "Safari in Outlook Web App Classic mode." I've also seen the wording "classic experience." My understanding

How to use REST to download Outlook attachments from a node server?

隐身守侯 提交于 2021-02-18 18:57:48
问题 Right now I use the ewsURL to fetch the attachments through a SOAP request. My Outlook Addin gets the ewsURL with a token and send it to the server and the server uses that to get the attachments. The problem is, this does not work for the mobile app. In mobile, I can't get the ewsURL. According to the docs, I have to use the REST API but it's not clear how to use it on the server side. Any help? 回答1: On the add-in side , there are a couple of differences when using Outlook REST APIs from an

How to use Form.Show(IWin32Window)

倾然丶 夕夏残阳落幕 提交于 2021-02-17 06:21:07
问题 My goal is to use Form as progress bar of the Visio Application during some long actions. Which means, the Form should be display on top of the Visio Application. I also need the Form as non modal dialog (means not Form.ShowDialog() ) in order to letting the Visio app to continue works while the Form is appeares. I've already tried the following steps: Create a wrapper class that implements the IWin32Window. public class WindowWrapper : System.Windows.Forms.IWin32Window { public WindowWrapper

How to use Form.Show(IWin32Window)

*爱你&永不变心* 提交于 2021-02-17 06:21:07
问题 My goal is to use Form as progress bar of the Visio Application during some long actions. Which means, the Form should be display on top of the Visio Application. I also need the Form as non modal dialog (means not Form.ShowDialog() ) in order to letting the Visio app to continue works while the Form is appeares. I've already tried the following steps: Create a wrapper class that implements the IWin32Window. public class WindowWrapper : System.Windows.Forms.IWin32Window { public WindowWrapper

How do I make MS Word add-in trust self signed certificate?

痞子三分冷 提交于 2021-02-11 13:23:29
问题 We are mostly in our organization working locally using our extensive LAN and for our internal servers we don't use https. Though all new addins from MS Office demand that the requests use HTTPS, thus I created a self-signed certificate in one of our internal servers, from which the addin's manifest.xml fetches the html and js code. The problem is that, since MS Word uses IE 11 embedded therein, we get that annoying security warning on the taskpane addin. How do I make MS Word add-in trust a

Is it possible to refresh fields of a word document with Office.js?

橙三吉。 提交于 2021-02-11 06:11:25
问题 I have word documents with fields that display the value of custom document properties as such: `{ DOCPROPERTY example \* MERGEFORMAT }` Whenever my custom property is modified, in order for the changes to be displayed in my document, I need to select the field(s) and right-click -> update them. I was wondering if office.js had anything that would help me automatically update fields in my document. 回答1: There is no API to do this currently. But it is an excellent idea. Please suggest it at

Is it possible to refresh fields of a word document with Office.js?

百般思念 提交于 2021-02-11 06:09:48
问题 I have word documents with fields that display the value of custom document properties as such: `{ DOCPROPERTY example \* MERGEFORMAT }` Whenever my custom property is modified, in order for the changes to be displayed in my document, I need to select the field(s) and right-click -> update them. I was wondering if office.js had anything that would help me automatically update fields in my document. 回答1: There is no API to do this currently. But it is an excellent idea. Please suggest it at

Side loading an Outlook javascript add-in

安稳与你 提交于 2021-02-11 00:34:13
问题 I am having a horrible time getting started at creating an add-in for Outlook. I want to use the new html/javascript/manifest approach. I have been able to create a manifest and application which works great with outlook.live.com. Where I am completely getting stuck is with desktop Outlook. How do I install/debug my add-in with desktop Outlook? I cannot find anything in the UI which will let me add this style of add-in. Additionally the Microsoft documentation did not make things any clearer.

Two open taskpanes side by side

蓝咒 提交于 2021-02-08 09:17:58
问题 I am making an Office add-in which has two ribbon buttons. Each button is linked to a different TaskpaneId, and clicking on each button opens a different taskpane: <bt:Urls> <bt:Url id="Contoso.Taskpane1.Url" DefaultValue="https://localhost:3000/addin/page1" /> <bt:Url id="Contoso.Taskpane2.Url" DefaultValue="https://localhost:3000/addin/page2" /> </bt:Urls> It seems that I have seen some Office Add-ins where two task panes can be shown side by side simultaneously (I forgot which exactly the