<?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[&#x27;WriteString&#x27; : is not a member of &#x27;CStdioFile&#x27;???]]></title><description><![CDATA[<p>Hi ich will damit in ne Textdatei schreiben. Bekomme aber immer diese Fehlemeldung. Bei einem anderen Programm hats geklappt. Jetzt nicht mer. Hat jemand ne Ahnung wodran das liegen könnte. Hier ist mal grade die Source.</p>
<pre><code class="language-cpp">CStdioFile file;

		BOOL bSuccess = file.Open(
		_T(&quot;C:\\DomainRegistrieren.txt&quot;),
		CFile::modeCreate |
		CFile::modeWrite |
		CFile::shareDenyWrite |
		CFile::typeText
		);
		if (!bSuccess)
			return FALSE;

		CString strOutput = _T(&quot;Vollständiger Domainname: &quot;);
		strOutput += dlg.GetName();
		strOutput += dlg.GetDomain();
		strOutput += _T(&quot;\nPrimäre IP: &quot;);
		strOutput += dlg.GetPrimaryIP();
		strOutput += _T(&quot;\nSekundäre IP: &quot;);
		strOutput += dlg.GetSecondaryIP();
		strOutput += _T(&quot;\nBitte nicht registrieren vor dem: &quot;);
		strOutput += dlg.GetDate().Format(_T(&quot;%A %d %B %Y&quot;));

		file.WriteString(strOutput);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/66132/writestring-is-not-a-member-of-cstdiofile</link><generator>RSS for Node</generator><lastBuildDate>Fri, 05 Jun 2026 19:00:35 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/66132.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 25 Feb 2004 13:43:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &#x27;WriteString&#x27; : is not a member of &#x27;CStdioFile&#x27;??? on Wed, 25 Feb 2004 13:43:17 GMT]]></title><description><![CDATA[<p>Hi ich will damit in ne Textdatei schreiben. Bekomme aber immer diese Fehlemeldung. Bei einem anderen Programm hats geklappt. Jetzt nicht mer. Hat jemand ne Ahnung wodran das liegen könnte. Hier ist mal grade die Source.</p>
<pre><code class="language-cpp">CStdioFile file;

		BOOL bSuccess = file.Open(
		_T(&quot;C:\\DomainRegistrieren.txt&quot;),
		CFile::modeCreate |
		CFile::modeWrite |
		CFile::shareDenyWrite |
		CFile::typeText
		);
		if (!bSuccess)
			return FALSE;

		CString strOutput = _T(&quot;Vollständiger Domainname: &quot;);
		strOutput += dlg.GetName();
		strOutput += dlg.GetDomain();
		strOutput += _T(&quot;\nPrimäre IP: &quot;);
		strOutput += dlg.GetPrimaryIP();
		strOutput += _T(&quot;\nSekundäre IP: &quot;);
		strOutput += dlg.GetSecondaryIP();
		strOutput += _T(&quot;\nBitte nicht registrieren vor dem: &quot;);
		strOutput += dlg.GetDate().Format(_T(&quot;%A %d %B %Y&quot;));

		file.WriteString(strOutput);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/467531</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/467531</guid><dc:creator><![CDATA[Buddy]]></dc:creator><pubDate>Wed, 25 Feb 2004 13:43:17 GMT</pubDate></item></channel></rss>