ms-office

How to open MS Office files in Android [duplicate]

我只是一个虾纸丫 提交于 2019-12-10 14:01:02
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Android Microsoft Office Library (.doc, .docx, .xls, .ppt, etc.) I have been searching for an API for android to open and view .doc , .ppt , .docx or .pptx . I'm sure there should be one as there exist applications that can open these file format. I have found apache POI but it uses java awt which is not a part of android. Even an API to convert these file format to .pdf will be useful. 回答1: There isn't a

How do I make an editable UNION query?

纵饮孤独 提交于 2019-12-10 13:26:53
问题 In the course of a complex database structure, I need to provide the user with a means of editing data stored in a series of tables. Although all the data types are the same, they don't line up 1:1 in their names. To alleviate this, I created a query that maps the original names (which come from outside reports) to the internally-used names; from these queries, everything is fed into one giant UNION query. All the data types and field sizes line up properly. What else do I need to do to make

Retrieving all Outlook messages in same thread

风流意气都作罢 提交于 2019-12-10 11:46:17
问题 We are building sort of Communication Management System atop Outlook. One of the important task we wish to achieve is to retrieve all the messages (.msg files??) in the same thread along with their attachments and put them in the same folder inside CMS's repository . The problem we are facing is how do we know programatically that particular message (or .msg file??) and attachment belongs to the particular thread. Say for a first message we create a folder in a repository. Then we want all

How to show an Office/Word 2013 Task Pane 'Office App' after a click on a button in Ribbon?

♀尐吖头ヾ 提交于 2019-12-10 11:08:21
问题 I've created a Task Pane App with the new Office App model. It uses JQuery and a REST Service to search and display data from SharePoint in the (Word 2013) Task Pane. This works ok, however the App Task Pane should be activated after clicking on a custom button in the ribbon. To create the button, I've created a Word 2013 Addin project with following Custom UI XML: <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load"> <ribbon> <tabs> <tab idMso="TabHome"

Repeating content with Office Open XML

我的梦境 提交于 2019-12-10 10:45:45
问题 I've been checking out what is possible with the Office Open XML specification for documents. I'm particularly interested in being able to add custom XML content to a document and binding it to content controls. I was wondering if it is possible to have a repeating content control type? For example, say I have some custom XML in my .docx file that looks like so: <Work> . . <People> <Person> <Name>Jane Doe</Name> <EmailAddress>jane@abc.com</EmailAddress> </Person> <Person> <Name>John Doe</Name

Add-in persistent settings in OSX/Mac

痞子三分冷 提交于 2019-12-10 10:41:51
问题 I am having trouble finding a way to store persistent settings for an office.js add-in on Mac. On windows localStorage works perfect as it saves settings that persist through closing and opening Word. On Mac localStorage does not persist closing and opening Word, not even through a refresh or closing and opening of the add-in. Here is a simple code sample: var settingString = 'mySetting'; var oldValue = localStorage.getItem(settingString); write('oldValue: "' + oldValue + '"'); var d = new

Upside down text for report?

∥☆過路亽.° 提交于 2019-12-10 09:41:37
问题 For specific reasons, I need to be able to display some values on the bottom half of my report upside down(inverted). The intention of this report is to be printed and folded down the middle, so I would like for it to adhere to this specific format. I can't find anything that does this easily. Some ideas that I have considered but don't know how to implement: 'importing' an upside-down font and setting the control's font to that font? somehow inverting the entire control 180 degrees Does

What are the clipboard formats for Microsoft Office where you can drop a chart?

北城以北 提交于 2019-12-10 09:41:25
问题 I'm trying to create a DOCX in memory that I can provide for a Drag & drop operation. I first tried "Embed Source." However, while it seems to be perfect (DOCX in an OLE wrapper), Word does not use it for drag & drop although it does use it for cut & paste. Is there a way to force Word/Excel/PPT to use "Embed Source?" Second it uses FileContents sometimes and that also looks like it would work. However while Spy shows it being requested when Word does a drag/drop to Word, it doesn't work when

Localize Office add-in based on Office language pack in use rather than Windows' current language

不羁的心 提交于 2019-12-10 05:10:52
问题 I'm trying to localize my office add-in, I've read through many docs and tutorials on how to do this, but they all teach on how to localize it based on what the current Windows language, not necessarily what office language interface pack is in use. So I end up in a situation where my Windows language is French, I don't have any office language interface packs, therefore all my menus in the Office are in English, except my add-in which is in French. It looks kind of odd, so I was wondering if

How to export FlowDocument to DOC(x) or XLS

核能气质少年 提交于 2019-12-10 03:50:19
问题 In my program I generate some reports in FlowDocument and display it with DocumentViewer control. Now I need to add more export opportunities. I use iTextSharp to export in PDF, and I can save to XPS natively. Can I save a document directly to any office formats, DOC or XLS. Or maybe someone knows of a good library for converting from PDF / XPS in DOC or XLS? 回答1: I found a solution. As I can't export to Doc from WPF automatically, I reproduced my page layout with DocX Library. This is really