<?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[Dateiname von OpenDialog ohne Endung?]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich möchte den Dateinamen aus OpenDialog-&gt;FileName ohne Endung in einen AnsiString speichern!<br />
Hat jemand ne Idee wie ich das machen könnte? ExtractFileName liefert mir ja nur den ganzen Dateinamen mit Endung!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/86563/dateiname-von-opendialog-ohne-endung</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Jul 2026 16:34:49 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/86563.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 20 Sep 2004 17:26:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Dateiname von OpenDialog ohne Endung? on Mon, 20 Sep 2004 17:26:14 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich möchte den Dateinamen aus OpenDialog-&gt;FileName ohne Endung in einen AnsiString speichern!<br />
Hat jemand ne Idee wie ich das machen könnte? ExtractFileName liefert mir ja nur den ganzen Dateinamen mit Endung!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/611172</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/611172</guid><dc:creator><![CDATA[Blackhawk]]></dc:creator><pubDate>Mon, 20 Sep 2004 17:26:14 GMT</pubDate></item><item><title><![CDATA[Reply to Dateiname von OpenDialog ohne Endung? on Mon, 20 Sep 2004 17:32:20 GMT]]></title><description><![CDATA[<p>Hallo mal wieder!</p>
<p>Packe ExtractFileName doch einfach in einen AnsiString und benutze SubString (siehe Borland - Hilfe) um an die letzte Endung zu kommen.</p>
<p>Grüße</p>
]]></description><link>https://www.c-plusplus.net/forum/post/611182</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/611182</guid><dc:creator><![CDATA[Genscher]]></dc:creator><pubDate>Mon, 20 Sep 2004 17:32:20 GMT</pubDate></item><item><title><![CDATA[Reply to Dateiname von OpenDialog ohne Endung? on Mon, 20 Sep 2004 17:43:05 GMT]]></title><description><![CDATA[<p>[edit] omg ich bin ein depp^^ klar, dein vorschlag stimmt schon^^</p>
<p>[edit2] vielen dank, es geht!</p>
<pre><code>AnsiString name=ExtractFileName(OpenDialog1-&gt;FileName);
name=name.SubString(0,name.Length-ExtractFileExt(name).Length());
</code></pre>
<p>mann is das ein klammer gewirr ^^</p>
]]></description><link>https://www.c-plusplus.net/forum/post/611184</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/611184</guid><dc:creator><![CDATA[Blackhawk]]></dc:creator><pubDate>Mon, 20 Sep 2004 17:43:05 GMT</pubDate></item><item><title><![CDATA[Reply to Dateiname von OpenDialog ohne Endung? on Mon, 20 Sep 2004 18:32:23 GMT]]></title><description><![CDATA[<p>ich hab die noch eine Alternative:</p>
<pre><code>AnsiString strName = ExtractFileName(ChangeFileExt(OpenDialog1-&gt;FileName, &quot;&quot;))
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/611239</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/611239</guid><dc:creator><![CDATA[Acidmrp]]></dc:creator><pubDate>Mon, 20 Sep 2004 18:32:23 GMT</pubDate></item></channel></rss>