<?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[Excel speichern, wie?]]></title><description><![CDATA[<p>Hallo!<br />
Ich habe schon alle Boards nachgeschaut. Und finde ich kein Antwort.<br />
Oder suche ich irgentwie falsch.<br />
C++Builder6:</p>
<pre><code class="language-cpp">//--Excel offnen:
 Variant Excel;
     Excel = Variant::CreateObject(&quot;Excel.Application&quot;);
     Excel.OlePropertyGet(&quot;ActiveWorkBook&quot;);
        Excel.OlePropertyGet(&quot;WorkBooks&quot;).OleFunction(&quot;Open&quot;,StringToOleStr(datei));

//--Tabelle offnen:
 Variant Sheet;
     Sheet=Excel.OlePropertyGet(&quot;Sheets&quot;,&quot;Tabelle1&quot;);

//--irgentwas eintragen(z.B. Datum)
Sheet.OlePropertyGet(&quot;Cells&quot;,5,9).OlePropertySet(&quot;Value&quot;,StringToOleStr(Datum));

//--Excel speichern:
  Excel.OlePropertyGet(&quot;Save&quot;);  &lt;---***
//--Exel schlesen:
  Excel.OleFunction(&quot;Quit&quot;);
   Excel = Unassigned;
</code></pre>
<p>Bei &lt;---*** kommt immer Meldunf, ob ich wirklich schpeichern muss, oder Abrechen........<br />
Wie kann ich das ausschalten?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/76506/excel-speichern-wie</link><generator>RSS for Node</generator><lastBuildDate>Mon, 29 Jun 2026 07:10:52 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/76506.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 12 Jun 2004 11:41:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Excel speichern, wie? on Sat, 12 Jun 2004 11:41:58 GMT]]></title><description><![CDATA[<p>Hallo!<br />
Ich habe schon alle Boards nachgeschaut. Und finde ich kein Antwort.<br />
Oder suche ich irgentwie falsch.<br />
C++Builder6:</p>
<pre><code class="language-cpp">//--Excel offnen:
 Variant Excel;
     Excel = Variant::CreateObject(&quot;Excel.Application&quot;);
     Excel.OlePropertyGet(&quot;ActiveWorkBook&quot;);
        Excel.OlePropertyGet(&quot;WorkBooks&quot;).OleFunction(&quot;Open&quot;,StringToOleStr(datei));

//--Tabelle offnen:
 Variant Sheet;
     Sheet=Excel.OlePropertyGet(&quot;Sheets&quot;,&quot;Tabelle1&quot;);

//--irgentwas eintragen(z.B. Datum)
Sheet.OlePropertyGet(&quot;Cells&quot;,5,9).OlePropertySet(&quot;Value&quot;,StringToOleStr(Datum));

//--Excel speichern:
  Excel.OlePropertyGet(&quot;Save&quot;);  &lt;---***
//--Exel schlesen:
  Excel.OleFunction(&quot;Quit&quot;);
   Excel = Unassigned;
</code></pre>
<p>Bei &lt;---*** kommt immer Meldunf, ob ich wirklich schpeichern muss, oder Abrechen........<br />
Wie kann ich das ausschalten?</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/538530</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/538530</guid><dc:creator><![CDATA[Inna]]></dc:creator><pubDate>Sat, 12 Jun 2004 11:41:58 GMT</pubDate></item><item><title><![CDATA[Reply to Excel speichern, wie? on Sat, 12 Jun 2004 14:11:04 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">Excel.OlePropertyGet(&quot;ActiveWorkBook&quot;).OlePropertyGet(&quot;Save&quot;);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/538620</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/538620</guid><dc:creator><![CDATA[wjuri]]></dc:creator><pubDate>Sat, 12 Jun 2004 14:11:04 GMT</pubDate></item><item><title><![CDATA[Reply to Excel speichern, wie? on Sun, 20 Jun 2004 14:16:43 GMT]]></title><description><![CDATA[<p>Hi!</p>
<p>Dazu noch 'ne Frage: Wie speichert man die Datei dann unter einem anderen Namen? Danke im voraus!</p>
<p>Sebo</p>
]]></description><link>https://www.c-plusplus.net/forum/post/544270</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/544270</guid><dc:creator><![CDATA[SeboStone]]></dc:creator><pubDate>Sun, 20 Jun 2004 14:16:43 GMT</pubDate></item></channel></rss>