Questions tagged [officedev]

This generalized tag is used for any MS Office related development. You can include this tag if you automate, extend or customize Office, create apps, COM libraries, dlls, add-ins, etc. It is expected that questions about Office development relate to specific programming problems.

Anything related to MS Office development can be tagged with the tag.

Consider adding the below tags as additional tags to your question or select more appropriate tags to the content of your question.

Additional resources

93 questions
0
votes
0 answers

Send a bubble into a teams meeting through bot framework

After downloading and running the sample project (Meeting Token Generator) I tried to create my own bot. So I followed the steps 2 and 3 (in the previous link) to create a new resource and a new bot channel registration. After this I replicated the…
0
votes
1 answer

Creating a Deep Link to Tab from Notification in Activity Feed

I am developing a MS Team app which has a Tab and a Notification only Bot. How can i add a deep link to my tab when the user clicks on the Notification from the Activity Feed. Sending the notification like below. const activity = { …
AhmedVali
  • 185
  • 2
  • 16
0
votes
1 answer

not included in schema definition for MailAppVersionOverridesV1_1 in Visual Studio 2017?

When building a Office Add-in Manifest project in Visual Studio 2017, we're getting errors with the schema definition not including the SupportsSharedFolders element. However, documentation states that this element is supported in 1.8:…
0
votes
0 answers

Excel office addin + React - Security Error with websockets

I've been trying to create an excel addin with React. I'm trying to connect it to a websocket server but I keep getting this vague error: Error: SecurityError due to this line this.client = new WebSocket('ws://localhost:6789'). Is there a way to…
ty1
  • 334
  • 4
  • 19
0
votes
1 answer

Page breaks(LastRenderedPageBreak) missing when openXml extracted by Office.js

W:LastRenderedPageBreak tag missing when document.xml extracted through Office.js. please let me know is there a way to get this tag through Office.js. Thank you in advance!
Manohar
  • 31
  • 1
  • 6
0
votes
1 answer

Which document describe the result class of every api call in microsoft graph php sdk?

$user = $graph->createRequest("GET", "/me") ->setReturnType(Model\User::class) ->execute(); How can I know the return type of /me call is Model\User::class?
cst_zf
  • 11
  • 4
0
votes
0 answers

setSolidColor throwing unexpected error in Excel Javascript on chart series

The setSolidColor method of the chart series class is throwing an error in Excel 1907 Build 11901.20080 but NOT in Excel 1902 Build 11328.20116. To demo the error I modified the examples in Script Lab, specifically the section under "charts" called…
Philip
  • 147
  • 7
0
votes
1 answer

Excel add-in web app using SSO api 13004 error

I have developed an Excel add-in web app via ASP.NET web server using SSO like the following article. https://learn.microsoft.com/en-us/office/dev/add-ins/develop/create-sso-office-add-ins-aspnet I have everything working locally, but when…
BryanS
  • 1
0
votes
1 answer

Adding Office UI Fabric react components to Office Add-in web project in visual studio

I am aware that we can use Yo-man and VS template to create office add-in. Yo-man provide more options on building package depending on the framework we select. I am wondering if we can add Office UI fabric react components to the web project of…
0
votes
2 answers

How do I create guided product tours for Excel Addin

I've developed an Excel add-in using the Excel-DNA library. I'd like to create a guided product tour for when the user first installs the plugin. I'm looking for the traditional product tour workflow where the window is dimmed, and the plugin…
user171943
  • 1,325
  • 3
  • 12
  • 18
0
votes
1 answer

Using SSO (getAccessTokenAsync) getting error 5001

I was trying to run the sso example for nodejs https://github.com/officedev/office-add-in-nodejs-sso and when I call the API for getting the token(this line): Office.context.auth.getAccessTokenAsync({forceConsent: false}, I am getting the error…
0
votes
1 answer

Office.js Reading excel specific rows

I am creating a excel table with office.js using addFromNamedItemAsync with table binding. This table will have thousands of rows. We have to read some specific row and save to backend. Instead of using table.rows and iterate all the rows, is there…
0
votes
1 answer

Outlook addin license token is not passed as ?et query string parameter to the addin iframe

In my outlook add-in, I notice that the license token is not passed as ?et query string at all. I did some debugging and find out the following: it seems that the value of the StoreType value within OsfControl is always hardcoded to "exchange" in…
Amr Fouad
  • 11
  • 2
0
votes
0 answers

Insert Excel validation list in excel using Javascript

We are using Excel 2016 Add-In to load data from DB to Excel 2016 (few Excel 2013). There is a column 'Status' in Excel. Currently it is simple text cell. We need Excel drop-down list in Status cell (refer below example image). We are using…
MAK
  • 129
  • 1
  • 8
0
votes
1 answer

Open XML run-time instead of SDK

This question is related to understand a better way of releasing my application. I have an application that process Excel Spreadsheets with Open XML SDK.I'm thinking of mentioning it as a prerequisite of my application so that users can download it…
helloworld
  • 965
  • 5
  • 14
  • 34