<?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[txt datei öffnen und speichern]]></title><description><![CDATA[<p>hallo brauche bitte hilfe<br />
ich möchte eine bestimmte txt datei fürs erste einmal öffnen und unter einem anderen pfad wieder abspeichern<br />
mitn c builder<br />
wie mach ich das?<br />
liebe grüße</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/166551/txt-datei-öffnen-und-speichern</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 01:03:04 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/166551.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 30 Nov 2006 13:05:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to txt datei öffnen und speichern on Thu, 30 Nov 2006 13:05:28 GMT]]></title><description><![CDATA[<p>hallo brauche bitte hilfe<br />
ich möchte eine bestimmte txt datei fürs erste einmal öffnen und unter einem anderen pfad wieder abspeichern<br />
mitn c builder<br />
wie mach ich das?<br />
liebe grüße</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1184492</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1184492</guid><dc:creator><![CDATA[C++ tanja]]></dc:creator><pubDate>Thu, 30 Nov 2006 13:05:28 GMT</pubDate></item><item><title><![CDATA[Reply to txt datei öffnen und speichern on Thu, 30 Nov 2006 13:49:37 GMT]]></title><description><![CDATA[<p>Du könntest, wenn es ein zusammenhängender Text ist, das ganze in ein Memo-Feld laden, dann bearbeiten und wieder abspeichern.</p>
<p>//Edit: Oh, sry, hab nicht gesehn das du es an einem anderen Pfad abspeichern willst... Da muss man dann noch den Pfad in der Variablen ändern... z.B. mit einem Editfeld oder so...</p>
<p>z.B. so:</p>
<pre><code class="language-cpp">//Ein Button zum Laden wird geklickt...

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  char const *Path = &quot;C:\\test.RTF&quot;;
  RichEdit1-&gt;Lines-&gt;LoadFromFile(Path);
}
//---------------------------------------------------------------------------
//Ein Button wird zum Speichern geklickt...

void __fastcall TForm1::Button2Click(TObject *Sender)
{
  char const *Path = &quot;C:\\test.RTF&quot;;
  RichEdit1-&gt;Lines-&gt;SaveToFile(Path);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1184513</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1184513</guid><dc:creator><![CDATA[Pac_-_man]]></dc:creator><pubDate>Thu, 30 Nov 2006 13:49:37 GMT</pubDate></item><item><title><![CDATA[Reply to txt datei öffnen und speichern on Thu, 30 Nov 2006 14:11:17 GMT]]></title><description><![CDATA[<p>sicher dass das so klappt ich hab noch nie was von einem RichEdit1 gehört wo find ich das im builder</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1184557</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1184557</guid><dc:creator><![CDATA[C++ tanja]]></dc:creator><pubDate>Thu, 30 Nov 2006 14:11:17 GMT</pubDate></item><item><title><![CDATA[Reply to txt datei öffnen und speichern on Thu, 30 Nov 2006 14:20:04 GMT]]></title><description><![CDATA[<p>wäre super wenn du mir das ganz genau erklärst ehrlichgesagt kenn ich mich im c nicht so besonders aus<br />
naja fraun und die technik halt <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="😉"
    /><br />
freundliche grüße</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1184573</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1184573</guid><dc:creator><![CDATA[C++ tanja]]></dc:creator><pubDate>Thu, 30 Nov 2006 14:20:04 GMT</pubDate></item><item><title><![CDATA[Reply to txt datei öffnen und speichern on Thu, 30 Nov 2006 14:23:43 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Schau einfach mal in die BCB-Hilfe zu TMemo, TOpenDialog, TSaveDialog und TStringList.<br />
Noch besser wäre es, wenn du das TexteditorTutorial aus der Hilfe durcharbeitest. Da werden deine Fragen unter anderen auch geklärt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1184585</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1184585</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 30 Nov 2006 14:23:43 GMT</pubDate></item></channel></rss>