outlook-addin

Replacing part of Outlook client's window with a custom form

和自甴很熟 提交于 2020-07-09 07:13:17
问题 I am developing a VSTO application for Outlook client. I am trying have my form open in the part of the Outlook client window which is highlighted in red in the following image: I think I can't use the form regions because they replace the view for a single item. So basically what I want to do is opening my custom form (windows or web) in the red area when I click my tool's button on the toolbar. Any ideas how this can be done? 回答1: There are three main ways for displaying your own form there

Replacing part of Outlook client's window with a custom form

纵然是瞬间 提交于 2020-07-09 07:11:01
问题 I am developing a VSTO application for Outlook client. I am trying have my form open in the part of the Outlook client window which is highlighted in red in the following image: I think I can't use the form regions because they replace the view for a single item. So basically what I want to do is opening my custom form (windows or web) in the red area when I click my tool's button on the toolbar. Any ideas how this can be done? 回答1: There are three main ways for displaying your own form there

What is the best way to store some data in VSTO addin?

ⅰ亾dé卋堺 提交于 2020-07-05 12:41:48
问题 I have developed one outlook add-in, that has to be On or Off. to do that i have declared one static variable as shown below, ThisAddIn.cs public static bool isAddInOn = false; RibbonButton.cs private void btnRibbon_Click(object sender, RibbonControlEventArgs e) { if (ThisAddIn.isAddInOn ) { ThisAddIn.isAddInOn = false; btnRibbon.Label = "Disabled"; } else { ThisAddIn.isAddInOn = true; btnRibbon.Label = "Enabled"; } } It is working. But the static variable reset again when i close outlook and

Use of Custom Properties from calendar events in Outlook 365

天涯浪子 提交于 2020-06-29 18:47:31
问题 I created an Outlook Add-In using JavaScript Office to store custom properties into a calendar event. I used the following call to retrieve data: event.loadCustomPropertiesAsync(callback) Everything works fine in the Add-In. I want to build a Universal App and be able to retrieve the same data. But I can't find anything to do it with the current API or Graph. Is it being developed ? Can someone point me in the right direction to solve my problem? How can we get the Graph Beta version? Thanks