ms-office

Using HTML as a interface for VBA Excel [closed]

不羁岁月 提交于 2019-12-13 10:12:59
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I am looking to develop an Excel based VBA system, as opposed to displaying and entering data in user forms, is it possible to use HTML as an interface to do so? And if so, can you please point me in the direction of how to set this up? I have searched Google and can only find

Can't open office documents from SharePoint site

强颜欢笑 提交于 2019-12-13 08:35:30
问题 I'm using SharePoint 2013 and some users, I'll repeat, only SOME of them can't open office files in their client application (word, excel...). I don't know what is the problem because I can open documents from my machine but when I log in to another machine (colleague that can't open documents) I'm also unable to open documents. So, problem is in machine. I tried: removing office cache files Adding SharePoint site to Trusted zone Repairing office installation... Nothing helps. Message after a

How to get active rent's details for given month using power bi [closed]

你。 提交于 2019-12-13 08:29:46
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 9 months ago . I want to show active rent's details for given month in power bi. I have a table where i have rent details. In that table i have start date, end date and how many months. So when i select a month in power bi visual i want to show what are the rents currently active using power bi Example House A 1

Send a message from host page to Dialog box

那年仲夏 提交于 2019-12-13 07:27:49
问题 I am trying to use Dialog API of Office Add-ins. According to the doc, we could use Office.context.ui.messageParent to send a message from the Dialog box to the host page (eg, task pane). Whereas, I don't see how we could send a message from the host page to the Dialog box. Does anyone know how to do this? 回答1: There are 2 possible solutions: Send data as query params, when you open a pagein dialog box. If there are in same domain then localstorage should be available in dialog which was

Follow hyperlink using the VBA

≯℡__Kan透↙ 提交于 2019-12-13 07:26:05
问题 How to follow hyperlinks in Microsoft Word 2016? This works fine in Excel: ' Works in Excel Sub FollowURL() ActiveCell.Hyperlinks(1).Follow End Sub However, when I try to change ActiveCell to Selection (assuming it is necessary for Word), it doesn't work: ' Doesn't work in Word Sub FollowURL() Selection.Hyperlinks(1).Follow End Sub 回答1: What about: ' Note: Ensure the selection contains "http://..." ' for example: http://www.google.com ActiveDocument.FollowHyperlink Selection.Text Note: That

Custom Backstage View Tab like standard tab FileNew

我的梦境 提交于 2019-12-13 06:57:19
问题 I want to design own custom backstage view tab that has desing like standard tab FileNew. How can I (and can I at all) use such tab elements like scrollable button set or large borderless button with text at bottom of one. 回答1: There are elements in the BackStage Tabs which are built-in and not available form the programming side. For example, all the individual controls on the Print Backstage Tab cannot be re-used by a developer. I'm afraid that we have the same problem with the File New

How to access a table within a range nested in another table?

a 夏天 提交于 2019-12-13 06:31:09
问题 In order to access the single table within a range (say, rngOuter) I used: tblOuter = rngOuter.Tables[1]; After I placed a nested table within a range (say, rngInner) within that outer range's table, I found that: tblInner = rngInner.Tables[1]; did not work. rngInner.Tables[1] references tblOuter, rather than the table within itself. In fact, Tables collection of rngInner has only one element, and that is tblOuter. In order to access tblInner, I have to get at tblOuter.Range.Tables[1]. Does

POST and DELETE a booking using OutlookClient and Outlook Calendar API

為{幸葍}努か 提交于 2019-12-13 05:31:59
问题 I'm using Outlook-SDK-Android (MS) to talk with Outlook Calendar REST API. So far I've been able to get the events from my calendar using: import com.microsoft.services.outlook.fetchers.OutlookClient; OutlookClient mClient; ... mClient = new OutlookClient(outlookBaseUrl, mResolver); final List<Event> events = mClient .getMe() //.getUsers() //.getById("meetingRoom@company.com") // This gives me back 403 :( .getCalendarView() .addParameter("startDateTime", startDate) .addParameter("endDateTime"

OfficeToPDF not executing via shell_exec

守給你的承諾、 提交于 2019-12-13 05:29:13
问题 I am executing the command in by localhost on the command line as: OfficeToPDF.exe C:\wamp\www\editor\uploaded\uploaded_files_21_original\AffidavitinDIR-4.docx C:\wamp\www\editor\uploaded\uploaded_files_21_original\pdf\new2.pdf This runs fine and provides the necessary result. However, when I run it through php as: shell_exec('OfficeToPDF.exe C:\wamp\www\editor\uploaded\uploaded_files_21_original\AffidavitinDIR-4.docx C:\wamp\www\editor\uploaded\uploaded_files_21_original\pdf\new2.pdf'); It

converting office documents to html5

断了今生、忘了曾经 提交于 2019-12-13 04:04:02
问题 I am working on a project, and I need something like office web app , I don't know if I can make it myself , how to read office file formats and convert it to html5. 回答1: It's a very significant project to convert arbitrary Office documents to HTML 5. Office itself can generally save in HTML format. You can most likely use the Interop libraries provided by the various Office products to save as HTML. Look at: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._workbook