Tagged Questions
The ole-automation tag has no wiki summary.
15
votes
6answers
44k views
What does the Excel VBA range.Rows property really do?
OK, I am finishing up an add-on project for a legacy Excel-VBA application, and I have once again run up against the conundrum of the mysterious range.Rows(?) and worksheet.Rows properties. Does ...
5
votes
1answer
82 views
IAdviseSink setup for catching MSWord document events
Here is the code where I try to setup IAdviseSink interface implemented in my TForm1 class for catching some events of the newly created MSWord document. I have not any errors while the code runs, but ...
4
votes
2answers
309 views
Is it possible to automate a Click-to-run application?
I have a small application which automates Microsoft Word via COM/OLE Automation.
Unfortunately this doesn't work with the virtualized Click-to-run editions of Word, because they don't have the ...
4
votes
4answers
584 views
From C#, open an arbitrary application
Related question [stackoverflow] here.
I'm trying to do the above, but I want to take the process one step further. I want to open an arbitrary file using the default editor for the file type. From ...
3
votes
1answer
169 views
Using a indentifier or reserved word in a automation object under FPC
Actually i am using OLE automation under Free Pascal , but some objects have properties which uses reserverd words as names, so i cannot compile the code.
check this sample
MyObj : OleVariant;
...
2
votes
1answer
110 views
delphi - need to read all occurrences of Recurring Outlook Appt
Using Delphi to read Outlook appointments via COM...
Code is working fine, with the exception of Recurring appointments.
Everything I read says that I need to using RecurrencePattern and GetOccurrence ...
2
votes
1answer
130 views
How to add a button to Excel with OLE
I use OLE method like this:
var
xlApp, xlWorkBook, xlWorkSheet, arr: Variant;
begin
xlApp := CreateOLEObject('Excel.Application');
xlApp.Visible := True;
end;
How to add a ...
2
votes
4answers
2k views
Converting Timespan to DateTime in C#
I am reading Excel worksheet data using C# and Microsoft.Office.Interop. The sheet contains some date values. When I am trying to read that value it is just giving the number (probably TimeSpan). I am ...
2
votes
2answers
2k views
OLE automation - WORD tabels (Delphi)
I'm trying to make tables inside tables in WORD. of course in finall program it will be dinamical, which is not in this sample.
Here is my sample code.
var
aTable, bTable, cTable : OLEVariant;
...
2
votes
3answers
604 views
OLE Automation basics with Perl
I'm new with this Perl Win32::OLE automation. I have been reading and trying out some examples. I have a few questions (excuse me if i'm using incorrect terminologies - do correct me):
Can OLE be ...
1
vote
1answer
154 views
How to prevent Windows Explorer from reusing the existing Excel instances?
I have a number of different programs where I create Excel instances and control them via OLE automation. In some cases the user can also work with these instances through Excel UI (which may involve ...
1
vote
1answer
2k views
OLE Automation to launch MS Word and bring to front
What is the "correct" (recommended) method for connecting to a running instance of MS Word and bringing this application to the front? I am doing something like the following from a VBA app:
...
...
1
vote
2answers
756 views
.NET DateTime, different resolution when converting to and from OADate?
I'm converting a DateTime to OADate. I was expecting to get the exact same DateTime when converting the OADate back, but now it has only millisecond resolution, and is therefore different.
var a = ...
1
vote
2answers
557 views
Using Automation to get_Text from Excel. If cell too narrow, get #####. How can I avoid that?
I'm using Automation to get_Text from an Excel worksheet. I do this because I need the formatted value (getting the value of the cell doesn't apply any formatting). If the column the cell is in is ...
0
votes
0answers
148 views
How to hide Ribbon (menu / commandBars) of Word 2007/2010 with Java SWT oleClientSite
In word 2003 (and previous), hiding menus / bars in an OLE Frame with SWT ClientSite is done by means of oleAutomation, and setting the "Visible" property of commandBars to false, like this:
...
0
votes
1answer
68 views
Fast search and replace of styles in MS Word
I have the need to automate conversion of html files into MS Word files, and as part of it I want to remove all ocorances of style Normal (Web) and replace them with just Normal.
I'm using the ...
0
votes
2answers
257 views
Is there OLE Automation in Java?
Is it possible to use OLE Automation in Java? If not, why is it not possible in Java?
I'm looking to automate the exporting of excel spreadsheets in different format (ie, .csv etc...)
Thanks for the ...
0
votes
1answer
259 views
How to read/write local characters from/to MSWord 2003 using Delphi 7?
I have ListView on my form containing names and numbers and I have to provide printing MSWord document with those data filled into document's tables. Everything works fine with english characters but ...
0
votes
0answers
317 views
Export an Excel sheet to PDF using T-SQL to call Worksheet.ExportAsFixedFormat
I've got a SQL server 2008 R2 database that writes data to an Excel 2010 spreadsheet, and runs some calculations. I'd like to then export one of the sheets to PDF. The Transact SQL I'm running looks ...
0
votes
1answer
808 views
Problem with format a single excel column with OLE automation using Delphi
I have piece of code which I use to format a range of cells in Excel. It works fine in Excel 2007 but when the range is only 1 column wide and it is Excel 2003 instead of 2007, I'll get an error ...
0
votes
3answers
3k views
Building MFC Automation example (to access Excel using OLE automation). Can't compile
I'm trying to build the example described at http://support.microsoft.com/kb/178749/EN-US/ in order to build an application that programatically accesses Excel using Automation. I have Visual C++ ...
0
votes
2answers
454 views
How to write a class library for OLE Automation?
I have Excel add-in which I add so many class modules that it is now very bulky. I want to convert it into a type library or a COM package so that I can re-use it for the other apps in the MS Office ...
-1
votes
4answers
199 views
Where can I find Delphi Word.Application OLE interface manual?
All I could find is a simple example and a manual in VB which is not the same objects as Delphi.
Edit: So there is no manual. Where could I find the code that translates the Delphi code to access the ...