<?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[Dateibrowser]]></title><description><![CDATA[<p>Hallo, Ich habe folgendes Problem:</p>
<p>ich möchte aus einer MFC-Anwendung heraus Dateien laden, und möchte vorher schon durch diverse Auswahlmöglichkeiten die Liste einschränken. So nun meine Fragen:<br />
1.wie kann ich überhaupt Dateinamen, welche ich (bzw. das Programm nicht kennt in eine Liste laden?)<br />
2.wie starte ich dann extern das .pdf file?</p>
<p>vielen dank schonmal im vorraus</p>
<p>mfg milkaochse</p>
<p>-------<br />
MSDN Library zum Thema Fenstergröße ändern:<br />
Klicken Sie auf den Fensterrand, und ziehen Sie diesen, bis das Fenster die gewünschte Größe erreicht hat. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/168068/dateibrowser</link><generator>RSS for Node</generator><lastBuildDate>Fri, 01 May 2026 08:48:52 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/168068.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 Dec 2006 11:24:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Dateibrowser on Mon, 18 Dec 2006 11:24:36 GMT]]></title><description><![CDATA[<p>Hallo, Ich habe folgendes Problem:</p>
<p>ich möchte aus einer MFC-Anwendung heraus Dateien laden, und möchte vorher schon durch diverse Auswahlmöglichkeiten die Liste einschränken. So nun meine Fragen:<br />
1.wie kann ich überhaupt Dateinamen, welche ich (bzw. das Programm nicht kennt in eine Liste laden?)<br />
2.wie starte ich dann extern das .pdf file?</p>
<p>vielen dank schonmal im vorraus</p>
<p>mfg milkaochse</p>
<p>-------<br />
MSDN Library zum Thema Fenstergröße ändern:<br />
Klicken Sie auf den Fensterrand, und ziehen Sie diesen, bis das Fenster die gewünschte Größe erreicht hat. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1193907</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1193907</guid><dc:creator><![CDATA[milkaochse]]></dc:creator><pubDate>Mon, 18 Dec 2006 11:24:36 GMT</pubDate></item><item><title><![CDATA[Reply to Dateibrowser on Mon, 18 Dec 2006 11:33:55 GMT]]></title><description><![CDATA[<p>Schau dir CFileDialog an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1193912</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1193912</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Mon, 18 Dec 2006 11:33:55 GMT</pubDate></item><item><title><![CDATA[Reply to Dateibrowser on Tue, 19 Dec 2006 07:57:24 GMT]]></title><description><![CDATA[<p>Aus der MSDN Hilfe mit Beispiel.</p>
<p>CFileDialog( BOOL bOpenFileDialog, LPCTSTR lpszDefExt = NULL, LPCTSTR lpszFileName = NULL, DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, LPCTSTR lpszFilter = NULL, CWnd* pParentWnd = NULL );</p>
<p>Parameters</p>
<p>The lpszFilter parameter is used to determine the type of filename a file must have to be displayed in the file list box. The first string in the string pair describes the filter; the second string indicates the file extension to use. Multiple extensions may be specified using ‘;’ as the delimiter. The string ends with two ‘|’ characters, followed by a NULL character. You can also use a CString object for this parameter.</p>
<p>For example, Microsoft Excel permits users to open files with extensions .XLC (chart) or .XLS (worksheet), among others. The filter for Excel could be written as:</p>
<p>static char BASED_CODE szFilter[] = &quot;Chart Files (<em>.xlc)|</em>.xlc|Worksheet Files (<em>.xls)|</em>.xls|Data Files (<em>.xlc;</em>.xls)|<em>.xlc; <em>.xls|All Files (</em>.</em>)|<em>.</em>||&quot;;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1194451</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1194451</guid><dc:creator><![CDATA[schokomann]]></dc:creator><pubDate>Tue, 19 Dec 2006 07:57:24 GMT</pubDate></item><item><title><![CDATA[Reply to Dateibrowser on Tue, 19 Dec 2006 08:42:37 GMT]]></title><description><![CDATA[<p>vielen dank hab es gefunden:</p>
<pre><code class="language-cpp">CFileFind finder;
		BOOL bWorking = finder.FindFile(Folder);
		while (bWorking)
		{
			bWorking = finder.FindNextFile();
			m_liste.AddString((LPCTSTR) finder.GetFileName());
		}
</code></pre>
<pre><code class="language-cpp">name =  Dateiname;
		ShellExecute(NULL, &quot;open&quot;, &quot;AcroRd32.exe&quot;, name , NULL, SW_SHOW);
</code></pre>
<p>danke Milkaochse</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1194474</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1194474</guid><dc:creator><![CDATA[milkaochse]]></dc:creator><pubDate>Tue, 19 Dec 2006 08:42:37 GMT</pubDate></item></channel></rss>