2,580 questions
1
vote
0
answers
41
views
My Word add-in can display taskpane.html but not MyPopup.html
I created a Word Add-In following the Microsoft tutorial. It works just fine. The starting page is taskpane.html located in the src/taskpane folder, per the tutorial code. I am trying to enhance it ...
2
votes
1
answer
51
views
Excel Office.js displayDialogAsync fails with "Internal Error" on Desktop version 2507
I am developing an Excel add-in that needs to authenticate the user using OAuth. To do this I am calling Office.context.ui.displayDialogAsync to open the authorization page in a dialog.
The code works ...
1
vote
0
answers
168
views
How to prevent main window from stealing focus from an addin form on keypress?
I am writing an addin to a third-party application (Eplan, if it matters). The addin opens a form with a DatagridView that I want to use Ctrl-C / Ctrl-V in. The problem is that Eplan has many keyboard ...
0
votes
0
answers
26
views
Outlook add-in cannot figure out how to debug inside a Office.OnReady()
I've been working on an outlook add-in thats supposed to do some things with attachments when a mail is send, I've tried to use events for this but came to the conclusion that it may just be ...
0
votes
0
answers
34
views
PowerPoint JS API: Can't Create Lines with Negative Slope Using addLine
We are encountering a technical issue with the PowerPoint JavaScript API when attempting to create lines with negative slope (lines that go upward from left to right). Despite various approaches, we ...
0
votes
1
answer
38
views
Visio Addin - Mouseup event not firing after shape drag
I've got the following code (in testing mode) in a Visio addin to be used to track shapes being dragged. All events appear to be firing as expected - Except.... When I drag a shape, the mouse down ...
0
votes
1
answer
64
views
Check if cell has formula in Excel web add-in in C#
I am currently creating an Excel web add-in in C# with Visual Studio.
Is there a way to find if a cell has a formula ?
Find my code below. The aim of the code is to check the cells in A1 to E1 and ...
1
vote
0
answers
66
views
Office.js | Comments not showing immediately after adding through Office.js
I am building a word add-in, one of the main functions is that it can insert comments in specific parts of the document. The whole thing works well when used in locally installed Word, but as soon as ...
1
vote
1
answer
169
views
Converting 32-bit xll Excel add-in to 64 bit: LNK1561 error
I've inherited an ancient C project that builds an Excel add-in .xll file which works with 32-bit Office, but not 64-bit Office. The project is in a Visual Studio 2022 solution. There are two ...
2
votes
1
answer
186
views
Access RStudio R console when running a shiny app
I’ve written an RStudio addin that launches a Shiny gadget in the RStudio Viewer. However, once the gadget is running, my R console is locked until I close the gadget. Here’s a minimal example of my ...
0
votes
0
answers
90
views
Package Loading Failure Provided add-in package was not understood. Please, make sure that the file being submitted is a valid Office add-in package
I am trying to import Teams package to Teams Developer Portal. Getting this error while uploading and validating app package. Manifest version 1.16.
Saw a lot of different sources and found nothing.
{
...
0
votes
1
answer
86
views
Word update (2410) crashing Word when setting HeaderFooter.LinkToPrevious to False
The latest Word update (version 2410 build 16.0.18129.201000 64-bit) is crashing Word for us. We believe its occurring when we set the HeaderFooter.LinkToPrevious property to False for an even page ...
0
votes
2
answers
217
views
Developing a word library add-in for office 2024
i'am trying to develop addin for word 2024.
I have created a dummy dll like this:
#include <Windows.h>
extern "C" int WINAPI wlAutoOpen(void);
extern "C" int WINAPI ...
0
votes
1
answer
155
views
fetch() partially working in office add-in
I am building an office add-in, specifically to be used in Word. I also have an API that I built using Django that accepts and takes in data as 'formData'. Now, in my office add-in I have written a ...
0
votes
4
answers
89
views
How to write to worksheet during add-in unload (shutdown)
I have an Excel VSTO add-in written in vb.net. I want to write a message to the active workbook and active sheet when the user unloads the add-in. I get a COMException HRESULT: 0x800AC472 when I try ...