OLE-Automation is a Microsoft COM based technology that allows one application to control another via an exposed public interface.
2
votes
1answer
482 views
Delphi Ole Automation - Save Word97-2003 file in Word 2010 without Save As dialog
I'm trying to save an Word 97-2003 document (.doc) using Delphi 6 and Word 2010.
Before Word 2010 everything worked fine with
WordDoc.SaveAs(FileName := FileName, FileFormat := wdFormatDocument);
...
1
vote
1answer
64 views
How to debug a background IDE that Jenkins starts as a SYSTEM user
We are successfully using the Jenkins CI server on Windows 7. It mainly does compiles using CodeWarrior. Using the Win32::OLE library in Perl to automate the IDE, I recently added a new Unit Test job ...
0
votes
1answer
178 views
Create a VFP Chrome or FireFox Object
We have a VFP application and need to open a specific site in Chrome or Firefox. The site is optimized for either of those browsers.
We know how to Createobject for InternetExplorer.Application to ...
1
vote
0answers
39 views
800a0ad error in VBS, Windows 7 32
I wrote a simple ActiveX Dll object with C++ & ATL (VS2010) for using in VBS scripting engine embedded in a SCADA system. It's just a code carcass now, just interfaces with stubs, no dependencies. ...
0
votes
0answers
95 views
Catching MS Word Events DocumentBeforeSave Visual C++ 6
I am trying to get at the _Document object and the Cancel instruction for MS Word in the functions DocumentBeforeSave and DocumentBeforeClose.
I have the listener all hooked up and these events are ...
0
votes
0answers
118 views
GetHtmlFromHwnd doest not work from inside Internet Explorer
I'm trying to use the well known "GetHtmlFromHwnd" function from inside Internet Explorer, in a hook dll for a password spy application. The function works well if I use it from an application outside ...
0
votes
1answer
331 views
ole automation date to c# date time picker value
I am fetching some data from the SQL server, and trying to display on Front End C# windows form.
dtpMcAccExp.Text =
...
0
votes
1answer
543 views
Programmatic Execution Excel Macro on Remote Machine from a website
I tried searching everywhere for a solution on this issue but found nothing. To give you an idea what I want to achieve here is the scenario.
I have a website where users generate and Excel report ...
3
votes
1answer
345 views
How to pass a parameter to a OLE Automation object such as MS Word
This is mainly a Delphi syntax related question.I need to set a parameter to True when calling a method of an OLE object.
In need to set in Word Automation:
// thiw is from Word Reference
...
0
votes
2answers
252 views
talking to an OLE Automation (IDispatch) server from PowerShell
I'm interested in communicating with an OLE Automation (IDispatch) server from Windows Powershell. Can anyone point me to some simple sample code that illustrates doing this? I know I can use ...
5
votes
2answers
256 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 ...
2
votes
1answer
500 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 ...
-1
votes
4answers
2k 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 ...
2
votes
1answer
346 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 ...
0
votes
1answer
234 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 ...
2
votes
3answers
2k 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
576 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 ...
7
votes
4answers
14k 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 ...
3
votes
1answer
250 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;
...
1
vote
1answer
424 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 ...
3
votes
1answer
5k 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:
...
...
6
votes
3answers
2k 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 = ...
5
votes
2answers
485 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 ...
0
votes
1answer
1k 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 ...
4
votes
4answers
1k 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 ...
2
votes
2answers
3k 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
857 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 ...
24
votes
7answers
76k 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 ...
1
vote
2answers
742 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 ...
3
votes
3answers
4k 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
570 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 ...