<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[OLE Automation mit Word - Tabellenzeile löschen]]></title><description><![CDATA[<p>G'Tag,</p>
<p>ich arbeite derzeit an einer umfangreichen OLE Automation zwischen Word und dem BCB.<br />
Leider bleibt es mir verborgen, wie ich per OLE eine Zeile in einer Tabelle in Word löschen kann.<br />
Weiss da jemand weiter?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/150422/ole-automation-mit-word-tabellenzeile-löschen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 08 Aug 2026 19:22:42 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/150422.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 16 Jun 2006 11:15:22 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to OLE Automation mit Word - Tabellenzeile löschen on Fri, 16 Jun 2006 11:15:22 GMT]]></title><description><![CDATA[<p>G'Tag,</p>
<p>ich arbeite derzeit an einer umfangreichen OLE Automation zwischen Word und dem BCB.<br />
Leider bleibt es mir verborgen, wie ich per OLE eine Zeile in einer Tabelle in Word löschen kann.<br />
Weiss da jemand weiter?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1078780</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1078780</guid><dc:creator><![CDATA[blutzukker]]></dc:creator><pubDate>Fri, 16 Jun 2006 11:15:22 GMT</pubDate></item><item><title><![CDATA[Reply to OLE Automation mit Word - Tabellenzeile löschen on Fri, 16 Jun 2006 11:41:40 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>schau in der VBA-Hilfe von Word nach, bzw. zeichne mit dem Makro-Editor von Word genau diese Aktion auf und schau dir den Quellcode an.<br />
Dann must du das nur noch auf OLE umsetzen.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1078799</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1078799</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Fri, 16 Jun 2006 11:41:40 GMT</pubDate></item><item><title><![CDATA[Reply to OLE Automation mit Word - Tabellenzeile löschen on Fri, 16 Jun 2006 11:48:32 GMT]]></title><description><![CDATA[<p>joa, das hatte ich bereits probiert.<br />
das makro sieht dann so aus:</p>
<pre><code>Selection.Rows.Delete
</code></pre>
<p>leider weiss ich nicht, wie ich das in OLE ausdrücken kann.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1078806</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1078806</guid><dc:creator><![CDATA[blutzukker]]></dc:creator><pubDate>Fri, 16 Jun 2006 11:48:32 GMT</pubDate></item><item><title><![CDATA[Reply to OLE Automation mit Word - Tabellenzeile löschen on Tue, 20 Jun 2006 11:38:17 GMT]]></title><description><![CDATA[<p>kann mir das evtl. jemand als OLE-Anweisung für BCB übersetzten?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1081328</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1081328</guid><dc:creator><![CDATA[blutzukker]]></dc:creator><pubDate>Tue, 20 Jun 2006 11:38:17 GMT</pubDate></item><item><title><![CDATA[Reply to OLE Automation mit Word - Tabellenzeile löschen on Tue, 20 Jun 2006 12:47:20 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">Variant wordActiveDocument = vOLEWord.OlePropertyGet(&quot;ActiveDocument&quot;);
Variant wordTables = wordActiveDocument.OlePropertyGet(&quot;Tables&quot;);
Variant wordTable1 = wordTables.OleFunction(&quot;Item&quot;, (Variant) 1); //erste Tabelle
Variant wordRows = wordTable1.OlePropertyGet(&quot;Rows&quot;);
//long row_count = wordRows.OlePropertyGet(&quot;count&quot;);
Variant wordRow = wordRows.OleFunction(&quot;Item&quot;, (Variant) 2 ); //zweite Zeile
wordRow.OleProcedure(&quot;Delete&quot;); //löschen
</code></pre>
<p>Googeln hilft <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1081400</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1081400</guid><dc:creator><![CDATA[Linnea]]></dc:creator><pubDate>Tue, 20 Jun 2006 12:47:20 GMT</pubDate></item><item><title><![CDATA[Reply to OLE Automation mit Word - Tabellenzeile löschen on Fri, 23 Jun 2006 06:23:32 GMT]]></title><description><![CDATA[<p>hmm - danke... funktioniert bestens...<br />
habe selber beim googlen nichts derartiges gefunden.<br />
merci</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1083527</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1083527</guid><dc:creator><![CDATA[blutzukker]]></dc:creator><pubDate>Fri, 23 Jun 2006 06:23:32 GMT</pubDate></item></channel></rss>