0
votes
1answer
26 views

Office Open XML SDK - good Introduction?

I am writing a program which modifies POwerpoint files via Office automation. THis is painfully slow and error prone so I attempting to move some functionality to Office Open XML SDK. I read the ...
1
vote
0answers
37 views

ExcelVBA : Automating sparklines using saved template model

With two of my previous question's answer i am now able to to do what i wanted to do : How to extract each color bar and copy them in a table? How to save correctly sparklines models (color, width, ...
0
votes
1answer
92 views

Office (Outlook) Interop Issue on Windows Server 2008 R2

I made a small Console Application that sends a SMS. As you maybe know, you can send SMS with Outlook. Well I finished and everything worked fine, but only on my Desktop PC with Windows 7. On the ...
0
votes
1answer
144 views

Insert date difference field in MS-Word

I need to insert in CV created in MS Word document the age of the people. I know the birth date of the person. Is there a way to insert a field that will automatically calculates the age? Johny ...
1
vote
2answers
552 views

How do I get shapes in a swimlane shape object from visio automation?

I am using office automation to convert visio files to a specified xml format flowchart, and I need use the swimlane data as container of workflow process . so how can I get the relation between ...
0
votes
1answer
131 views

Powerpoint Protected Mode with Disabled Ribbon - Automated in Delphi

I am looking for a way to protect powerpoint presentations via Automation using Delphi. In Word, I can issue this command: If (WordDocument.ProtectionType = wdNoProtection) Then ...
3
votes
0answers
192 views

Word 2007 Digital Signatures Automation

I have a Delphi 2007 application that uses Word automation and my boss wants it to control Office/Word signatures. I have no problem adding the signatures, but I would like to delete the signatures ...
1
vote
3answers
799 views

Code to read Word docs

I need a script (or other code, C#, etc.) that will fetch every paragraph/sentence containing a particular word in a set of Word 2007 documents and move them to a new Word document, recording the ...
1
vote
1answer
388 views

How to get excel to insert a new image with Applescript?

I have the following Applescript: tell application "Microsoft Excel" tell active workbook make new picture at end with properties {save with document:true, file ...
0
votes
1answer
523 views

Creating Outlook Tasks with Python

Is there a way using Python to automate adding Tasks to Outlook (2007 or 2010)? I see there is a way to create Outlook Invites through pywin32, however, I'm not sure about the parameters required, ...
0
votes
2answers
518 views

Word Automation: Noneditable

I am using Access to send data to a template I created in Word. After it succesfully sends the data I need to make the open Word Document NON-editable. Also, I notice that after I am done with the ...
1
vote
1answer
2k views

PowerBuilder 10.5 with MS Office 2010

We are using MS Office 2010 with PowerBuilder 10.5. While using mail merge functionality from PowerBuilder application. It got application terminated. But in the later version works as usual.. I ...
1
vote
1answer
342 views

automaticaly build a org chart based on self-referancing sql employee table?

sol have a standard self referencing employee table in sql 2005 and thought it would be cool to have an automated way to be able to build an org. chart like this link text i want somethign that can ...
0
votes
1answer
787 views

Word OLE Automation Watermark adding in MS-Office COM Object

I am using PHP COM Object but i guess it is the same in all other languages. How do i add watermark to a .doc / .docx Microsoft Word using COM / OLE Automation? try { $word = new ...
1
vote
1answer
552 views

Strange automation? error in Word2007

I'm pulling my hair out because I've run into the following problem with one of my clients: My program uses extensive VBA automation in Word. Macros are saved in a specific Word template that is ...
1
vote
4answers
942 views

Office 2010 server side automation in a Windows HPC Server 2008 R2 Environment

I am aware of of the infamous Considerations for server-side Automation of Office from Microsoft and it clearly lists products from the 2010 suite. However, today I was made to believe by an IT ops ...
1
vote
2answers
548 views

HOw do I suppress the VIsual Basic “Macros are Disabled” Dialog that shows when opening a word doc in C#

I have a really annoying problem. I am openign a word document via c# / COM Interop (Word 2007). I want to prevent the Macros from Running as some of them may crash (older files with missing ...
1
vote
1answer
3k views

C# office 2010 automation

i'm trying to make a program that inserts data into specific places in existing word document and saves a copy of it. and i have no clue how to do it , and i cant find any good resource on office 2010 ...
3
votes
2answers
1k views

Word OLE Automation - delete first page and manipulate header and footer

I am using PHP to start Word Automation and manipulate word documents, but i guess it can be done in all any other language. What i need to do is quite simple, i need to remove the first page and add ...
0
votes
1answer
148 views

Automate Word plug-ins

We are planning to automate the different plug-ins available in a Word document. Using C#, we need to interact with textbox, buttons and other controls available in a given plug-in. Is there any way ...
0
votes
1answer
1k views

How do I get the scroll position from Microsoft Excel

When using Microsoft office automation I want to insert images into a spreadsheet. How can I determine the current users scroll location?
4
votes
1answer
4k views

Programmatically configuring MS-Word's Trust Center settings using C#

I have developed a simple C# Winforms application that loads MS-Word 2007 documents via COM automation. This is all very simple and straight forward, however depending on the document I need to ...
0
votes
1answer
158 views

Setting Word's printer through Office automation

I'm looking to do the same as in this question here, however I am developing in a .NET class library, referencing the Primary Interop Assemblies. The item returned from the dialog box collection when ...
3
votes
7answers
9k views

MS Word Viewer C# .NET automation

Is it possible to automate the following: referencing MS Word Viewer to open a document programatically and then print it? C# ideally Im guessing if it is possible to open it then more than likely it ...
0
votes
5answers
808 views

Use Excel for calculations in web app

I've inherited a large Excel spreadsheet that does some financial calculation magic using any number of simulation tables, and have been asked to write a web application as a front end. Now I could ...
0
votes
1answer
738 views

Lock down Word & PowerPoint features

Does anyone know of a way to lock down (remove/hide/disable) Word & PowerPoint in Office 2007? Simply put I want to disable the user from using some functionality in them (mostly formatting). ...
0
votes
2answers
674 views

How Do I 'Restore' MS Word's Document Window Using Automation

I would like to be able to 'restore' MS Word's document window using Automation. I already have the application object and I have tried calling App.Activate. Activate will bring the window to the top ...
0
votes
2answers
292 views

NET code to “listen” to an office application (get the events raised by the user)

I am on the verge of remaking an application for e-learning. But now I want to take this new version to a new level. So this the scenario: a user opens up my app. He/she then chooses to be trained in ...
2
votes
1answer
1k views

Open Word Documents using Interop DLL without opening Word?

I have written an automated test which loops through a large volume of Word Documents and opens them individually in a single Word instance. My question is.. can I perform the OpenDocument() without ...
0
votes
4answers
2k views

Close MS Office C# Console

I'm writing an automated test to determine whether or not rtf files are successfully opened by MS Word. So far I looping through all the rtfs within a given directory and opening them. Later I will ...
0
votes
3answers
521 views

Programatically converting from MS word to Excel

Is there anyway to problematically take a MS Word file and convert to excel. (Obviously, word would to guess where to put stuff). Any language would be fine
4
votes
3answers
4k views

Checking for the Variant value “Nothing”

This is something I ran into last year, and SO seems like a good place to document it :) Q: When automating Excel (/Word/...) from Delphi, how can I check if an Excel function returned the variant ...
0
votes
1answer
733 views

How to Automatically “Reset to Quick Styles from XYZ Template” in Word 2007?

In Word 2007, a user may update the applied styles by selecting the "Reset to Quick Styles from XYZ Template" in the Change Styles menu option. Does anyone know of a way to automate this? I tried ...
1
vote
2answers
1k views

How Do I Bypass MS Access Startup When Using OLE?

I am trying to do an automated xml export from an access database using C# and OLE. Everything is working perfectly except that the startup form is shown and won't close without user intervention. ...
3
votes
4answers
727 views

C# Visual Studio: How to have mulitple developers on a solution that references Office?

When i add a reference to Office COM Library, i to go: References Add Reference Select the COM tab Select Microsoft Office 12.0 Object Library And magically named reference appears: ...
2
votes
2answers
1k views

.NET Interop: Find All instances of of a running COM object with C#

Background I am automating some Office application (Word and PowerPoint) via command-line tool. One thing my tool needs to do is locate all the running instances of Word. I know how to get a ...
0
votes
1answer
1k views

VS 2008 Open Word Document - Memory Error

I am executing the following code that worked fine in a vs2003(1.1) but seems to have decided otherwise now that I'm using vs2008(2.0/3.5): Dim wordApp As Microsoft.Office.Interop.Word.Application ...
1
vote
2answers
2k views

How to fill DataTable from an in-memory Excel Worksheet

Our client gets Excel files in Excel's HTML format.(That's the way it arrives; nobody has any control over that.) We then need to run a report based on the data in the file. Using ADO.NET ...
5
votes
2answers
7k views

Programmatically extract macro (VBA) code from Word 2007 docs

Is it possible to extract all of the VBA code from a Word 2007 "docm" document using the API? I have found how to insert VBA code at runtime, and how to delete all VBA code, but not pull the actual ...
4
votes
8answers
9k views

How to convert Word and Excel documents to PDF programmatically?

We are developing a little application that given a directory with PDF files creates a unique PDF file containing all the PDF files in the directory. This is a simple task using iTextSharp. The ...