The office-automation tag has no wiki summary.
0
votes
1answer
19 views
How to automate an Excel document and work on other excel document at the same time?
I'm using a program to automate an excel document and in the meantime I would like to open others Excel documents and work on these (not automated).
When I open an document while my automation is ...
0
votes
0answers
24 views
Create docx with older msword8.h using Office 2010
When using Office Automation with MFC we have an old application written in Visual C++ that uses the headers from msword8.h of Word97, were are changing our systems to use Office 2010 i would like to ...
0
votes
4answers
196 views
Getting System.Runtime.InteropServices.COMException Error in Server Side Generated Excel
We have a web application that generates excel spreadsheets and run macros on the server side. It then sends them to different individuals via email. It is a part of a legacy reporting style which ...
2
votes
2answers
59 views
Write formula with double quote symbol in Excel with C#
I would like to write a formula in a Excel cell.
I managed to write simple formula but I have an issue with the following formula :
=IF(OR(ISBLANK(I20631);ISBLANK(F20631));"";I20631=F20631)
In my ...
1
vote
1answer
24 views
Is it possible to automate the Compare Presentations feature of PowerPoint 2010?
Is it possible, either through VBA or interop / VSTO, to automate the "compare presentations" feature of PowerPoint 2010? Simply invoking it would be a start, though ideally I'd like a bit more ...
1
vote
2answers
69 views
PC cannot print to Email using Outlook
I am having a very strange problem where one of the computers in our company is unable to print an MS Access report and attach it to an email. I have done a lot of research however most of it doesn't ...
0
votes
0answers
34 views
Repurpose Word button callback issue in C++ ATL
I followed this document http://msdn.microsoft.com/en-us/library/office/bb462633(v=office.12).aspx on repurposing Word buttons/toggle buttons like Copy, Cut and Bold, and was able to successfully ...
0
votes
1answer
332 views
Setting Excel NumberFormat for Dates ignoring the locale in native C++
I'm using Excel COM automation from native C++. My goal is to set the NumberFormat of a range for dates. The Problem is, the format string Excel expects depends on the user's locale.
Example:
If the ...
0
votes
1answer
109 views
Why does my code open two Microsoft Office Word instances?
I use a function to ease printing in my application. Here it is:
public void print(string fileName, string variables, string values, string template)
{
// CREATE TEXT FILE FOR ...
0
votes
0answers
90 views
Window z-order issues with TS RemoteApp and Server 2008 RS2
I'm currently working on an application (in VB6, not that it should matter) which uses Word automation to generate documents before displaying them to the user. Originally we used app.Activate (where ...
0
votes
1answer
175 views
Word Interop Move Table Row
Does anyone know a way to move a row in a table?
I have a table with dynamic number of row, that I want to manipulate by code (interop c#).
For example I want to move the row with the index 5 to ...
1
vote
3answers
351 views
Outlook New Mail Window opened from C# seems to have focus but my app still has it
I'm having a problem that I've been trying to solve for days now, but without luck!
On my Windows Forms Application I have a grid. One column contains an email address. When the user double clicks ...
4
votes
10answers
1k views
How to generate report in word 2010 using c# , dot net, word templates, xml
We have a database application that stores data that we want to report in Microsoft Word.
Suppose all information of my customers is stored on a database system and I am now requested to create ...
0
votes
1answer
77 views
WordProcessingML. How do I assign background color to text?
I have code that creates document with several paragraphs with different text-color for some words. Something like:
using (var doc = WordprocessingDocument.Create("some-file-name", ...
0
votes
1answer
255 views
web service MS Word compare automation cause freeze
My WebService uses ms word COM to compare 2 .doc files. When result file is going to be more than 1 Mb - it's hangs up. (for smaller files - everything is ok).
It's happens when I publish&run ...
1
vote
2answers
1k views
Running an Excel Macro via C#: Run a macro from one workbook on another?
I am looking to run a macro, let's call it Macro01 from WorkSheet01 on WorkSheet02.
Using Microsoft.Office.Interop.Excel Namespace I have opened a WorkSheet01.
public void Main_CodedStep()
{
...
0
votes
0answers
337 views
Automate data entry from excel to web [closed]
I'm working on a project that utilizes a web tool I need to enter data into. I have all the data I need in excel and unfortunately this tool does not allow for copy/pasting a row/col of data, but ...
0
votes
1answer
332 views
How to programmatically change background color in MS Project 2007 cell?
I am tring to automate some MS Project features using C# and cannot find a solution how to change background and font color of special task cell.
I enumerate all tasks in project in that code sample, ...
5
votes
0answers
278 views
Search and replace in OLE Word automation - how to cover header and footer?
I've a perfectly working function to find and replace a variable with text in word documents.
HRESULT CMSWord::FindReplace( CString szVar, CString szText, bool bOnlyOnce/*=false*/ )
{
...
0
votes
1answer
52 views
Tool to Batch Manipulate xls files [closed]
I have hundereds of xls files with many tabs. For each file I want to [for example] append tab a+b (keeping just one header row), then append c+d+e+f (again just keeping one header row). I then want ...
1
vote
2answers
370 views
Microsoft Excel Interop Check whether excel sheet support Autofit
While working with Excel Interop, i come up with an issue. Before Saving I Autofit columns of worksheet with the following code.
Excel.Worksheet curSheet = (Excel.Worksheet)wsEnumerator.Current;
...
0
votes
1answer
155 views
office automation null reference exception (only on some installations)
I've been using office automation for some time now, in order to merge data into a word document using the following code:
oWord = new Microsoft.Office.Interop.Word.Application();
...
1
vote
1answer
258 views
Loading an excel application with a file opened inside a windows .NET client app
How to load an Excel application inside an .NET Windows client application?
The excel application should be hosted in windows form just a like any windows user control.
The loaded excel application ...
0
votes
1answer
45 views
MS Word COM addin can't receive messages in XP
From inside my COM addin I create a dialog, and I then send messages to it from an external process. I use HWND_BROADCAST and RegisterWindowMessage.
But those messages are never received by the ...
0
votes
1answer
537 views
How can I avoid Excel show Save dialog when automation app exits
I have a excel automation application written in Delphi, that accesses a given excel workbook and extracts applying some internal logic different data of the sheets.
It has worked perfectly for ...
0
votes
1answer
487 views
Make excel print multiple worksheets in a single print job
I'm using COM automation to open a xls file and print it to a virtual PDF printer.
Sheets sheets(m_Application.GetSheets());
...
1
vote
0answers
127 views
Get Formatted PowerPoint 2010 Slide Notes
Using the following C# code I can get the raw text. What I need, however, is a way to get the formatting (bold, italics, etc) that goes along with the text.
string noteText;
for ( var i = 1; i ...
0
votes
1answer
129 views
Making a workbook visible
I have the following code:
Dim DumpXlApp As Excel.Application = New Excel.Application
Dim DumpWkBk As Excel.Workbook
DumpWkBk = System.Runtime.InteropServices.Marshal.BindToMoniker(FilePath)
...
2
votes
1answer
688 views
reasons why excel.exe remains loaded after running a delphi client automation program?
I wrote a Delphi program that extracts and consolidates data from several different spreadsheets of a single .XLS file, to a text file for later processing. It is a Delphi 7 console program.
An ...
1
vote
1answer
423 views
How to set default print 'zoom > scale to paper size' to be A4 from c# code?
I'm using the following code to create a word document from my c# application:
oWord = new Word.Application();
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);
...
1
vote
1answer
2k views
Automation Errors: 800706B5, 80004005, 80010108 appear for internal SAP site scrape
I am writing a macro that will scrape my company's internal SAP site for vendor information. For several reasons I have to use VBA to do so. However, I cannot figure out why I keep getting these three ...
1
vote
2answers
200 views
How to SaveAs in Word 97 using Word version 12 component?
I'm using the Word 2007-component in C#.
I want to save the Word document as a Word97(-2003)-document, because not everyone uses Word 2007/2010.
I thought it is easy by using the following command
...
0
votes
1answer
281 views
Excel array and collection passing between modules messing up values
This is really stumping me. I put a question up yesterday regarding collections being passed between modules (see here), but it doesn't seem like I am getting anymore explanations on that one, so i am ...
0
votes
1answer
403 views
Excel VBA Workbook not adding to Object Collection
I am trying to create a collection of workbooks that will allow me to more easily keep track of all the workbooks that are opened. Because the workbooks will be named differently each time, and ...
3
votes
1answer
2k views
Dir Function in Excel 2010 VBA not working
I am trying to loop through a given directory to find the latest downloaded csv file. For some reason my Dir function won't find any file even if the file does exist. I am not totally familiar with ...
0
votes
1answer
142 views
Using Firemonkey to merge data with MS Word docs
I'm about to write a windows app that will merge database data with ms word docs. I would like to know whether I am able to do that with Firemonkey, so in the future I can reuse the non ...
0
votes
1answer
2k views
IE 9 not accepting SendKeys
I posted on IE 9 not accepting SendKeys to download a file, but this problem is separate enough from the answer I received to justify another question. My problem is that I can't get IE 9 to accept ...
2
votes
1answer
2k views
Excel VBA SendKeys not causing IE 9 to save download
I am writing a Macro that automates the process of downloading a csv file from my company's internal website. For many reasons I can't use any xmlhttp objects, and I have gotten the macro to the point ...
0
votes
1answer
231 views
Delphi - Keeping Word Document Focused
I have run into an interesting problem with the current application I'm working on in Delphi. The problem is that in certain circumstances the ActiveDocument of our TWordApplication can be changed ...
1
vote
1answer
2k views
“Call Rejected By Callee”
We're in the process of moving a slew of our applications from Windows XP to Windows 7 and have run into an old problem with Word Automation.
We had an issue in one of our applications where we would ...
0
votes
1answer
1k views
Printing with advanced options (tray selection, duplex, staple)
We have a project of managing printing documents. At first I wonder why printing options couldn't be set up in single place. For example printer tray selection for first page and for other pages can ...
0
votes
1answer
217 views
Using Word automation in C# I want to change the path which the next Save button will refer to
I have an application which creates and opens a document in Word. The user can modify the document and then save it again, but I don't want the user to be prompted via Word to save it in the location ...
0
votes
1answer
86 views
IsSearchSynchronous fails in Outlook
I am using Outlook automation to find items in the Calendar. For that I use IsSearchSynchronous() method to see if I have to wait for the AdvancedSearchComplete event. BTW, is it ever synchronous???
...
0
votes
2answers
722 views
Dynamically adding RibbonButtons in Word Addin throws Collection is readonly
I am fairly new to Word AddIns and trying to add Ribbon Group(s). for each RibbonGroup i dynamically add RibbonMenu and then add RibbonButtons to menu inside a Group.
I got the groud work and it ...
0
votes
1answer
687 views
Remove Control Control from Word document after generating a document
I have a C# document generation component which inserts content into control controls in a word document and everything is working well.
The only problem is that in the generated document, the ...
1
vote
1answer
465 views
Programmatically encrypt Outlook email using Inspector
I'm using C# with Outlook Object Model (Redemption is not an option for me due to licensing) and I'm having difficulty programmatically encrypting an email message before sending it.
I can ...
7
votes
2answers
408 views
Multiple InfoPath interop automation instances
I am trying to automate multiple parallel instances of Office InfoPath 2010 via a windows service. I understand automating Office from a service is not supported however it is a requirement of my ...
0
votes
0answers
143 views
How to test if Word document opened successfully using Automation from .net web application
From within a .net web application I am trying to open and manipulate some Word documents. The application will run on a web server - so the automation is taking place there (I guess?)
Seems to be ...
0
votes
1answer
805 views
Call Access sub from Outlook VBA - Method Run of Object _Application failed
I'm trying to create an application that will run a subroutine in MS Access when an email is received in Outlook. I'm using an Access.Application object and its Run method. No matter how simple I make ...
0
votes
1answer
2k views
Connection String for Excel 2010?
I am using OLEDB to connect to Excel 2010. What is the required connection string for this operation?

