OLE automation - WORD tabels (Delphi) - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T04:24:35Zhttp://stackoverflow.com/feeds/question/1141599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1141599/ole-automation-word-tabels-delphi1OLE automation - WORD tabels (Delphi)Rok2009-07-17T06:00:39Z2009-07-17T07:23:07Z
<p>Hi,</p>
<p>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.</p>
<p>Here is my sample code.</p>
<pre><code> var
aTable, bTable, cTable : OLEVariant;
begin
m_WordApplication := CreateOleObject('Word.Application') ;
m_WordDocument := m_WordApplication.Documents.Add;
aTable := m_WordDocument.Tables.Add(m_WordApplication.Selection.Range, 2, 1);
aTable.Borders.Item(wdBorderLeft).LineStyle:=wdLineStyleSingle;
aTable.Borders.Item(wdBorderRight).LineStyle:=wdLineStyleSingle;
aTable.Borders.Item(wdBorderTop).LineStyle:=wdLineStyleSingle;
aTable.Borders.Item(wdBorderBottom).LineStyle:=wdLineStyleSingle;
bTable := m_WordDocument.Tables.Add(aTable.Cell(1, 1).Range, 2, 1);
bTable.Borders.Item(wdBorderLeft).LineStyle:=wdLineStyleSingle;
bTable.Borders.Item(wdBorderRight).LineStyle:=wdLineStyleSingle;
bTable.Borders.Item(wdBorderTop).LineStyle:=wdLineStyleSingle;
bTable.Borders.Item(wdBorderBottom).LineStyle:=wdLineStyleSingle;
cTable := m_WordDocument.Tables.Add(aTable.Cell(2, 1).Range, 3, 1);
cTable.Borders.Item(wdBorderLeft).LineStyle:=wdLineStyleSingle;
cTable.Borders.Item(wdBorderRight).LineStyle:=wdLineStyleSingle;
cTable.Borders.Item(wdBorderTop).LineStyle:=wdLineStyleSingle;
cTable.Borders.Item(wdBorderBottom).LineStyle:=wdLineStyleSingle;
m_WordDocument.SaveAs('C:/test.doc', False) ;
m_WordApplication.Quit(False);
</code></pre>
<p>Firstly i put new table(2 rows, 1 column) on position of the cursor, and then i try to put second table in cell(1,1) and third in cell(2,1) of the first table. second table has also 2 rows and 1 column, but third table has 3 rows and 1 column. but instead of what i want i get second and third table whit only one row, regardless if i putt something in thier cell or not.i always see only the last string i put in that table.</p>
<p>even more, if i put 1 row and 2 column table inside first table, than everything is normal.</p>
<p>can you help me.</p>
<p>thanks, Rok</p>
http://stackoverflow.com/questions/1141599/ole-automation-word-tabels-delphi/1141682#11416820Answer by shahkalpesh for OLE automation - WORD tabels (Delphi)shahkalpesh2009-07-17T06:30:44Z2009-07-17T06:30:44Z<pre><code>aTable.Borders.Item(wdBorderVertical).LineStyle:=wdLineStyleSingle;
aTable.Borders.Item(wdBorderHorizontal).LineStyle:=wdLineStyleSingle;
</code></pre>
<p>You will have to do the same for bTable & cTable.</p>
<p>When you add more than 1 row/column, it will need border to separate it (i.e to separate 1 row from another OR separate 1 column from another).</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1141599/ole-automation-word-tabels-delphi/1141732#1141732-1Answer by Rok for OLE automation - WORD tabels (Delphi)Rok2009-07-17T06:51:45Z2009-07-17T06:51:45Z<p>unfortunately, this does not work. and it would be very strange if it would help, cause style shouldn't interfere in functunality of code.</p>
http://stackoverflow.com/questions/1141599/ole-automation-word-tabels-delphi/1141737#11417372Answer by The_Fox for OLE automation - WORD tabels (Delphi)The_Fox2009-07-17T06:53:43Z2009-07-17T06:53:43Z<p>When you have problems creating those tables in code, do the following:</p>
<ul>
<li>Open Word</li>
<li>record a new macro</li>
<li>While recording, build the table you want, then stop the recording.</li>
<li>View your macro code in the Visual Basic Editor and try to translate that to OLE-automation code (which isn't that hard, it's almost the same)</li>
</ul>
http://stackoverflow.com/questions/1141599/ole-automation-word-tabels-delphi/1141823#1141823-1Answer by Rok for OLE automation - WORD tabels (Delphi)Rok2009-07-17T07:23:07Z2009-07-17T07:23:07Z<p>The_Fox: i can not belive that MicroSoft has something useful. I owe you man. </p>