Questions tagged [office-app]

Office Web Apps are touch-friendly web applications that let you create, edit and share your Excel, Word, PowerPoint and OneNote files from any browser.

You can share and simultaneously work on your documents with classmates, friends and co-workers. No need to merge different versions later.

106 questions
0
votes
1 answer

Closed the word doc using process.kill() in C#, but when opening a fresh word it opens the last saved word doc. I want new word doc window

I was trying to automate office app in C# using Visual Studio. I opened the Word document using launch(@"WINWORD"), made some changes and saved the Word doc, and then closed the doc using process.kill(). Now next time, when I run the program, I look…
DecodeD
  • 7
  • 2
0
votes
1 answer

Change the language of Office Online Doc Viewer via URL parameters

So, I am using Google Doc Viewer to show .docx documents and it works fine, but it sometimes takes too much time to load and times out. I tried the Microsoft one and it looks pretty fast, but my problem is I need it to be in Spanish. In the case of…
Mihail Minkov
  • 2,463
  • 2
  • 24
  • 41
0
votes
0 answers

Error converting .docx with HTML to PDF using Graph API

I am trying to convert MS Word (.docx) file to PDF format using Graph API. The file is stored in SharePoint Office 365. I am using below code which works. var httpClient = await CreateAuthorizedHttpClient(); string path =…
0
votes
1 answer

Cannot find Excel in Javascript Chart API

I was trying to use this Microsoft tutorial Excel Chart Add-in - Javascript API In the first example, it has the code Excel.run(function (context) { var sheet = context.workbook.worksheets.getItem("Sample"); var dataRange =…
sayth
  • 6,696
  • 12
  • 58
  • 100
0
votes
1 answer

Insert table column in body after Outlook add-in

There is an Outlook add-in app. When the button is clicked, the table is inserted in the body, and after the first insertion, the next button is clicked and I want to insert the table column. Are there any related tutorials? The method that uses the…
김세림
  • 291
  • 1
  • 5
  • 17
0
votes
0 answers

Track Appointment Time changes in Office add-ins

I am currently opening a new Appointment form from add-in commands using " Office.context.mailbox.displayNewAppointmentForm " . And it is working fine. But I want to track if there are any changes made to the newly opened Appointment. I tried to use…
AhmedVali
  • 185
  • 2
  • 16
0
votes
1 answer

Can I add a button to my add-in next to Send/Discard buttons?

I am writing an Outlook Add-In (Web version, Desktop) and so far I was able to add a link to my app in the contextual menu (see screenshot below - highlighted in yellow). This work well, but it is almost impossible to find the add-in and this is…
Martin
  • 39,309
  • 62
  • 192
  • 278
0
votes
1 answer

Rely on `ng-app` in Excel add-ins by AngularJS

I have developing an Excel add-in by mean-stack. Long time ago, I saw an answer somewhere about starting up an AngularJS add-in with office.js (unfortunately I cannot find the thread anymore). The following solution was suggested, though I don't…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
0
votes
1 answer

Office.initialize raises $rootScope:infdig

Previously my add-in worked well in different browsers. Recently, in some browsers it does not load well (error messages in the console + just shows a blank page in UI); in some browsers it loads, but with error messages in the console. It is also…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
0
votes
2 answers

Correct way to Office.initialize in Office add-ins with angularjs

I want to build an Office add-in with angular and angular-ui-router. I don't know what's the correct place to put Office.initialize. At the moment, I use in index.html:
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
0
votes
1 answer

Submit an add-in only for Excel Online

I want to submit an add-in only for Excel Online (no Excel for Mac, no Excel for Windows). Could anyone tell me if it is possible and how to configure the manifest xml file?
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
0
votes
0 answers

I can not assign a new user a app on MS azure

I need to assign a new user. But I can not, because assign link is disable. So, how can I assign a new user for web app?
Mith
  • 1
  • 5
0
votes
1 answer

Is it possible to run a macro on button in Task Pane(web) using Office App?

I have created a macro in VBA. I want to call that macro on click on button in Task Add-in button. Is there any way to run macro using button provided in Task Add-in panel?
0
votes
1 answer

How to add comment to selected text in MS Word using Office App?

I am new in Office App development. I want to add comment to selected text on button click. I can get selected text using following code but I don't know how to add comment in selected text. Code:Home.js (function () { "use strict"; // The…
0
votes
0 answers

Taskpane app/add-in doesn't load on Office 2016

I have an Office Taskpane app/add-in that runs on both Word and Excel. Originally the app/add-in has been done by using VS2013. The app/add-in manifest has been put to the on-prem SharePoint 2013 app catalog. Also the Trusted App Catalogs url has…