Tagged Questions
5
votes
1answer
96 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 ...
3
votes
1answer
170 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
137 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
135 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
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;
...
0
votes
1answer
281 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
1answer
840 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 ...
-1
votes
4answers
244 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 ...