ms-office

How to dynamically load, access and unload subforms in microsoft access

依然范特西╮ 提交于 2019-12-11 01:48:44
问题 I am trying top transition from ASP.NET to programming in access and I am used to thinking in terms of Usercontrols when I think of subforms in Access. What I would like to do is allow user to click a button to load a subform that contains controls user can enter additional data into. I would appreciate any information or resource that would help me with understanding how this is done in MS Access -- how to load, unload and access data in the subforms as well. Thanks in advance 回答1: Well, as

Outlook Email via a Webpage

假如想象 提交于 2019-12-11 01:18:58
问题 I have a web application developed with ASP.net and C# that is running on my companies' intranet. Because all the users for this application are all using Microsoft Outlook without exception, I would like for the the application to open up an Outlook message on the client-side. I understand that Office is designed to be run on the desktop and not from a server, however I have no trouble creating a Word or Excel document on the client-side. I have code that instantiates the Outlook object

how migrate from office documents to modern web technologies based documents - advice welcome

丶灬走出姿态 提交于 2019-12-11 00:57:35
问题 Currently, all documentation is based on MS office. This makes it quite challenging if you want to integrate some functionality. Then you have either the option to go with VBA or VSTO. First is not that comfortable, second could be like taking a sledgehammer to crack a nut. Simple things like simple controls, hiding text or basic maths can be easily realized by HTML. So I would need an HTML text processor what focus on content (text) and allow me to add interactivity when I need it. That

Powerpoint 2010 VSTO AddIn taskpane on multiple Windows

≯℡__Kan透↙ 提交于 2019-12-11 00:36:36
问题 I would like have a taskpane displayed on each document-windows, I have read all MSDN articles about it, but it doesn't work. I click on ToggleButton1 when 3 or 4 document are open, and i get 3 or 4 TaskPanes, but on same document window. Edit : I think i don't have correctly explain the problem, sorry. New try : I click on ToggleButton1 on Presentation 1 window when 3 or 4 document are open, and i get 3 or 4 TaskPanes inside Prestation 1 window, windows from other presentation are empty.

looping a find and delete row macro

て烟熏妆下的殇ゞ 提交于 2019-12-11 00:32:39
问题 Please forgive the hand-holding that I'm sure I'm going to need on this question. I have very little experience with visual basic. Here's what I'm trying to do: I have a large table in Word 2011 (Mac), and I need to find a certain string within the table and delete the row that contains it. Okay, no problem to do that by recording a macro. However, I'd like to have the macro find all instances and delete the rows all at once rather than having to run the macro over and over (besides which,

Cannot edit CodeMirror or Ace in a taskpane of an add-in in Excel for Windows

梦想与她 提交于 2019-12-10 23:59:30
问题 I just realized that we cannot modify texts in CodeMirror or Ace in a taskpane of an add-in in Excel for Windows. I have made a test html page with this code, and link it to a manifest file of an Excel add-in. It works well in Excel Online (in Chrome and IE), Excel for Mac. However, in Excel for Windows, 1) textarea works well; 2) We could put the focus on CodeMirror, whereas we can NOT type anything; 3) When we put the focus on Excel then back on Ace, we can NOT type anything. I have not

Saving and closing office programs (word, excel, access, outlook) with VBS for backups

断了今生、忘了曾经 提交于 2019-12-10 23:46:22
问题 After spending a fair amount of time looking around, I'm coming up a little stumped, as this is (I'm sure) a pretty common problem. I run nightly backups of all our office machines, but Outlooks PST files often prevents this form successful completion. I found the solution to this for outlook, but other MS Office apps tend to block backups from successful completion as well. I've figured out how to save and close Outlook, Word, and Excel. Access I have a solution for, but would like to close

Why worksheet Id changing after reopening document (Excel javascript API )?

风格不统一 提交于 2019-12-10 23:45:23
问题 In my Excel tab-pane addin after adding worksheet(manually/programmatically) and running code below I have worksheet object where id is "{040E0F18-0F61-4CD9-886D-95112C925793}", then I save workbook, close and open again, run code below and it shows me that the worksheet.id now is "{00000000-0001-0000-0000-000000000000}"! In office.js reference about worksheet id: The value of the identifier remains the same even when the worksheet is renamed or moved. Read-only. Excel.run(function (ctx) {

Free library to MS Word [closed]

痴心易碎 提交于 2019-12-10 23:36:01
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I need open source or free to commercial use library, which can get data from MS Word file. I think about LibreOffice. Do you know

How To Get the Range of a Page Using Word Automation

北战南征 提交于 2019-12-10 22:58:16
问题 How do you find the range of page n in Microsoft Word using office automation? There appears to be no getPageRange(n) function and it is unclear how they are divided. 回答1: This is how you do it from VBA, should be fairly trivial to convert to Matlab COM calls. Public Sub DemoPerPageText() Dim i As Integer Dim totalPages As Integer Dim bmRange As Range totalPages = Selection.Information(wdNumberOfPagesInDocument) For i = 1 To totalPages Set bmRange = ActiveDocument.Bookmarks("\Page").Range