<?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[Fehler bei .exe]]></title><description><![CDATA[<p>Hallo,</p>
<p>nachdem ich in mein Programm Daten eingegeben und diese abgespeichert habe, kann ich die Datei nicht öffnen. Es kommt die Meldung &quot;Fehler beim öffnen des Documents&quot;.</p>
<p>Wie kann ich das ändern, oder muss ich das Programm nochmal neu schreiben?</p>
<p>Danke für die Antworten!</p>
<p>MfG</p>
<p>Franz</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/191498/fehler-bei-exe</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 01:27:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/191498.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 03 Sep 2007 17:44:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fehler bei .exe on Mon, 03 Sep 2007 17:44:59 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>nachdem ich in mein Programm Daten eingegeben und diese abgespeichert habe, kann ich die Datei nicht öffnen. Es kommt die Meldung &quot;Fehler beim öffnen des Documents&quot;.</p>
<p>Wie kann ich das ändern, oder muss ich das Programm nochmal neu schreiben?</p>
<p>Danke für die Antworten!</p>
<p>MfG</p>
<p>Franz</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358181</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358181</guid><dc:creator><![CDATA[Franz Hembera]]></dc:creator><pubDate>Mon, 03 Sep 2007 17:44:59 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 05:52:38 GMT]]></title><description><![CDATA[<p>Ich vermute mal, dass bei der Serialisierung Deines Dokumentes ein Unterscheid zwischen Laden und Speichern vorhanden ist.<br />
Zeig uns doch mal Deine Serialize FUnktion aus dem Dokument, oder die Methoden in denen Du liest und schreibst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358418</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358418</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Tue, 04 Sep 2007 05:52:38 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 11:36:45 GMT]]></title><description><![CDATA[<p>Also kompiliert wird das Programm ohne Fehlermeldung.<br />
Anbei zwei Dateien. Vielleicht kannst Du mir weiterhelfen.</p>
<pre><code class="language-cpp">// Lotto.cpp

#include &lt;stdafx.h&gt;
#include &quot;Lotto.h&quot;

IMPLEMENT_SERIAL(CLotto, CObject, 0)

void CLotto::Serialize(CArchive&amp; ar)
{
	if(ar.IsStoring())
	{
		ar &lt;&lt; m_strMs &lt;&lt; m_strDa &lt;&lt; m_nKw &lt;&lt; m_nSz &lt;&lt; m_nZz &lt;&lt; m_nSz1 &lt;&lt;
			  m_nZ1 &lt;&lt; m_nZ2 &lt;&lt; m_nZ3 &lt;&lt; m_nZ4 &lt;&lt; m_nZ5 &lt;&lt; m_nZ6 &lt;&lt;
			  m_nS1 &lt;&lt; m_nS1_1 &lt;&lt; m_nS1_2 &lt;&lt; m_nS1_3 &lt;&lt; m_nS1_4 &lt;&lt; 
			  m_nS1_5 &lt;&lt; m_nS1_6 &lt;&lt;
			  m_nS2 &lt;&lt; m_nS2_1 &lt;&lt; m_nS2_2 &lt;&lt; m_nS2_3 &lt;&lt; m_nS2_4 &lt;&lt; 
			  m_nS2_5 &lt;&lt; m_nS2_6 &lt;&lt;
			  m_nS3 &lt;&lt; m_nS3_1 &lt;&lt; m_nS3_2 &lt;&lt; m_nS3_3 &lt;&lt; m_nS3_4 &lt;&lt; 
			  m_nS3_5 &lt;&lt; m_nS3_6 &lt;&lt;
			  m_nS4 &lt;&lt; m_nS4_1 &lt;&lt; m_nS4_2 &lt;&lt; m_nS4_3 &lt;&lt; m_nS4_4 &lt;&lt; 
			  m_nS4_5 &lt;&lt; m_nS4_6 &lt;&lt;
			  m_nS5 &lt;&lt; m_nS5_1 &lt;&lt; m_nS5_2 &lt;&lt; m_nS5_3 &lt;&lt; m_nS5_4 &lt;&lt; 
			  m_nS5_5 &lt;&lt; m_nS5_6 &lt;&lt;
			  m_nS6 &lt;&lt; m_nS6_1 &lt;&lt; m_nS6_2 &lt;&lt; m_nS6_3 &lt;&lt; m_nS6_4 &lt;&lt; 
			  m_nS6_5 &lt;&lt; m_nS6_6 &lt;&lt;
			  m_nS7 &lt;&lt; m_nS7_1 &lt;&lt; m_nS7_2 &lt;&lt; m_nS7_3 &lt;&lt; m_nS7_4 &lt;&lt; 
			  m_nS7_5 &lt;&lt; m_nS7_6 &lt;&lt;
			  m_nS8 &lt;&lt; m_nS8_1 &lt;&lt; m_nS8_2 &lt;&lt; m_nS8_3 &lt;&lt; m_nS8_4 &lt;&lt; 
			  m_nS8_5 &lt;&lt; m_nS8_6 &lt;&lt;
			  m_nS9 &lt;&lt; m_nS9_1 &lt;&lt; m_nS9_2 &lt;&lt; m_nS9_3 &lt;&lt; m_nS9_4 &lt;&lt; 
			  m_nS9_5 &lt;&lt; m_nS9_6 &lt;&lt;
			  m_nS10 &lt;&lt; m_nS10_1 &lt;&lt; m_nS10_2 &lt;&lt; m_nS10_3 &lt;&lt; m_nS10_4 &lt;&lt; 
			  m_nS10_5 &lt;&lt; m_nS10_6 &lt;&lt;
			  m_nS11 &lt;&lt; m_nS11_1 &lt;&lt; m_nS11_2 &lt;&lt; m_nS11_3 &lt;&lt; m_nS11_4 &lt;&lt; 
			  m_nS11_5 &lt;&lt; m_nS11_6 &lt;&lt;
			  m_dJg &lt;&lt; m_dTg &lt;&lt; m_dWg &lt;&lt; m_dGk1 &lt;&lt; m_dGk2 &lt;&lt; m_dGk3 &lt;&lt; 
			  m_dGk4 &lt;&lt; m_dGk5 &lt;&lt; m_dGk6 &lt;&lt; m_dGk7 &lt;&lt; m_dGk8 &lt;&lt;
			  m_dW01 &lt;&lt; m_dW02 &lt;&lt; m_dW03 &lt;&lt; m_dW04 &lt;&lt; m_dW05 &lt;&lt; m_dW06 &lt;&lt;
			  m_dW07 &lt;&lt; m_dW08 &lt;&lt; m_dW09 &lt;&lt; m_dW10 &lt;&lt;
			  m_dW11 &lt;&lt; m_dW12 &lt;&lt; m_dW13 &lt;&lt; m_dW14 &lt;&lt; m_dW15 &lt;&lt; m_dW16 &lt;&lt;
			  m_dW17 &lt;&lt; m_dW18 &lt;&lt; m_dW19 &lt;&lt; m_dW20 &lt;&lt;
			  m_dW21 &lt;&lt; m_dW22 &lt;&lt; m_dW23 &lt;&lt; m_dW24 &lt;&lt; m_dW25 &lt;&lt; m_dW26 &lt;&lt;
			  m_dW27 &lt;&lt; m_dW28 &lt;&lt; m_dW29 &lt;&lt; m_dW30 &lt;&lt;
			  m_dW31 &lt;&lt; m_dW32 &lt;&lt; m_dW33 &lt;&lt; m_dW34 &lt;&lt; m_dW35 &lt;&lt; m_dW36 &lt;&lt;
			  m_dW37 &lt;&lt; m_dW38 &lt;&lt; m_dW39 &lt;&lt; m_dW40 &lt;&lt;
			  m_dW41 &lt;&lt; m_dW42 &lt;&lt; m_dW43 &lt;&lt; m_dW44 &lt;&lt; m_dW45 &lt;&lt; m_dW46 &lt;&lt;
			  m_dW47 &lt;&lt; m_dW48 &lt;&lt; m_dW49 &lt;&lt; m_dW50 &lt;&lt;
			  m_dW51 &lt;&lt; m_dW52; 
	}
	else
	{
		ar &gt;&gt; m_strMs &gt;&gt; m_strDa &gt;&gt; m_nKw &gt;&gt; m_nSz &gt;&gt; m_nZz &gt;&gt; m_nSz1 &gt;&gt;
			  m_nZ1 &gt;&gt; m_nZ2 &gt;&gt; m_nZ3 &gt;&gt; m_nZ4 &gt;&gt; m_nZ5 &gt;&gt; m_nZ6 &gt;&gt;
			  m_nS1 &gt;&gt; m_nS1_1 &gt;&gt; m_nS1_2 &gt;&gt; m_nS1_3 &gt;&gt; m_nS1_4 &gt;&gt; 
			  m_nS1_5 &gt;&gt; m_nS1_6 &gt;&gt;
			  m_nS2 &gt;&gt; m_nS2_1 &gt;&gt; m_nS2_2 &gt;&gt; m_nS2_3 &gt;&gt; m_nS2_4 &gt;&gt; 
			  m_nS2_5 &gt;&gt; m_nS2_6 &gt;&gt;
			  m_nS3 &gt;&gt; m_nS3_1 &gt;&gt; m_nS3_2 &gt;&gt; m_nS3_3 &gt;&gt; m_nS3_4 &gt;&gt; 
			  m_nS3_5 &gt;&gt; m_nS3_6 &gt;&gt;
			  m_nS4 &gt;&gt; m_nS4_1 &gt;&gt; m_nS4_2 &gt;&gt; m_nS4_3 &gt;&gt; m_nS4_4 &gt;&gt; 
			  m_nS4_5 &gt;&gt; m_nS4_6 &gt;&gt;
			  m_nS5 &gt;&gt; m_nS5_1 &gt;&gt; m_nS5_2 &gt;&gt; m_nS5_3 &gt;&gt; m_nS5_4 &gt;&gt; 
			  m_nS5_5 &gt;&gt; m_nS5_6 &gt;&gt;
			  m_nS6 &gt;&gt; m_nS6_1 &gt;&gt; m_nS6_2 &gt;&gt; m_nS6_3 &gt;&gt; m_nS6_4 &gt;&gt; 
			  m_nS6_5 &gt;&gt; m_nS6_6 &gt;&gt;
			  m_nS7 &gt;&gt; m_nS7_1 &gt;&gt; m_nS7_2 &gt;&gt; m_nS7_3 &gt;&gt; m_nS7_4 &gt;&gt; 
			  m_nS7_5 &gt;&gt; m_nS7_6 &gt;&gt;
			  m_nS8 &gt;&gt; m_nS8_1 &gt;&gt; m_nS8_2 &gt;&gt; m_nS8_3 &gt;&gt; m_nS8_4 &gt;&gt; 
			  m_nS8_5 &gt;&gt; m_nS8_6 &gt;&gt;
			  m_nS9 &gt;&gt; m_nS9_1 &gt;&gt; m_nS9_2 &gt;&gt; m_nS9_3 &gt;&gt; m_nS9_4 &gt;&gt; 
			  m_nS9_5 &gt;&gt; m_nS9_6 &gt;&gt;
			  m_nS10 &gt;&gt; m_nS10_1 &gt;&gt; m_nS10_2 &gt;&gt; m_nS10_3 &gt;&gt; m_nS10_4 &gt;&gt; 
			  m_nS10_5 &gt;&gt; m_nS10_6 &gt;&gt;
			  m_nS11 &gt;&gt; m_nS11_1 &gt;&gt; m_nS11_2 &gt;&gt; m_nS11_3 &gt;&gt; m_nS11_4 &gt;&gt; 
			  m_nS11_5 &gt;&gt; m_nS11_6 &gt;&gt;
			  m_dJg &gt;&gt; m_dTg &gt;&gt; m_dWg &gt;&gt; m_dGk1 &gt;&gt; m_dGk2 &gt;&gt; m_dGk3 &gt;&gt; 
			  m_dGk4 &gt;&gt; m_dGk5 &gt;&gt; m_dGk6 &gt;&gt; m_dGk7 &gt;&gt; m_dGk8 &gt;&gt;
			  m_dW01 &gt;&gt; m_dW02 &gt;&gt; m_dW03 &gt;&gt; m_dW04 &gt;&gt; m_dW05 &gt;&gt; m_dW06 &gt;&gt;
			  m_dW07 &gt;&gt; m_dW08 &gt;&gt; m_dW09 &gt;&gt; m_dW10 &gt;&gt;
			  m_dW11 &gt;&gt; m_dW12 &gt;&gt; m_dW13 &gt;&gt; m_dW14 &gt;&gt; m_dW15 &gt;&gt; m_dW16 &gt;&gt;
			  m_dW17 &gt;&gt; m_dW18 &gt;&gt; m_dW19 &gt;&gt; m_dW20 &gt;&gt;
			  m_dW21 &gt;&gt; m_dW22 &gt;&gt; m_dW23 &gt;&gt; m_dW24 &lt;&lt; m_dW25 &gt;&gt; m_dW26 &gt;&gt;
			  m_dW27 &gt;&gt; m_dW28 &gt;&gt; m_dW29 &gt;&gt; m_dW30 &gt;&gt;
			  m_dW31 &gt;&gt; m_dW32 &gt;&gt; m_dW33 &gt;&gt; m_dW34 &gt;&gt; m_dW35 &gt;&gt; m_dW36 &gt;&gt;
			  m_dW37 &gt;&gt; m_dW38 &gt;&gt; m_dW39 &gt;&gt; m_dW40 &gt;&gt;
			  m_dW41 &gt;&gt; m_dW42 &gt;&gt; m_dW43 &gt;&gt; m_dW44 &gt;&gt; m_dW45 &gt;&gt; m_dW46 &gt;&gt;
			  m_dW47 &gt;&gt; m_dW48 &gt;&gt; m_dW49 &gt;&gt; m_dW50 &gt;&gt; m_dW51 &gt;&gt; m_dW52;
	}
}

#ifdef _DEBUG
void CLotto::Dump(CDumpContext &amp;dc) const
{
	CObject::Dump(dc);
	dc &lt;&lt; &quot;m_strDa = &quot; &lt;&lt; m_strDa;
}
#endif // _DEBUG
</code></pre>
<pre><code class="language-cpp">// LottoMaxDoc.cpp : Implementierung der Klasse CLottoMaxDoc
//

#include &quot;stdafx.h&quot;
#include &quot;LottoMax.h&quot;

#include &quot;LottoMaxDoc.h&quot;

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

// CLottoMaxDoc

IMPLEMENT_DYNCREATE(CLottoMaxDoc, CDocument)

BEGIN_MESSAGE_MAP(CLottoMaxDoc, CDocument)
	ON_COMMAND(ID_BEARBEITEN_ALLESLOESCHEN, &amp;CLottoMaxDoc::OnBearbeitenAllesloeschen)
	ON_UPDATE_COMMAND_UI(ID_BEARBEITEN_ALLESLOESCHEN, &amp;CLottoMaxDoc::OnUpdateBearbeitenAllesloeschen)
	ON_UPDATE_COMMAND_UI(ID_FILE_SAVE, &amp;CLottoMaxDoc::OnUpdateFileSave)
END_MESSAGE_MAP()

// CLottoMaxDoc-Erstellung/Zerstörung

CLottoMaxDoc::CLottoMaxDoc()
{
	// TODO: Hier Code für One-Time-Konstruktion einfügen
#ifdef _DEBUG
	afxDump.SetDepth(1);
#endif // _DEBUG

}

CLottoMaxDoc::~CLottoMaxDoc()
{
}

BOOL CLottoMaxDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: Hier Code zur Reinitialisierung einfügen
	// (SDI-Dokumente verwenden dieses Dokument)

	return TRUE;
}

// CLottoMaxDoc-Serialisierung

void CLottoMaxDoc::Serialize(CArchive&amp; ar)
{
	if (ar.IsStoring())
	{
		// TODO: Hier Code zum Speichern einfügen
	}
	else
	{
		// TODO: Hier Code zum Laden einfügen
	}
	m_lottoList.Serialize(ar);
}

// CLottoMaxDoc-Diagnose

#ifdef _DEBUG
void CLottoMaxDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CLottoMaxDoc::Dump(CDumpContext&amp; dc) const
{
	CDocument::Dump(dc);
	dc &lt;&lt; &quot;\n&quot; &lt;&lt; m_lottoList &lt;&lt; &quot;\n&quot;;
}
#endif //_DEBUG

void CLottoMaxDoc::DeleteContents()
{
	while(m_lottoList.GetHeadPosition())
	{
		delete m_lottoList.RemoveHead();
	}
}

// CLottoMaxDoc-Befehle

void CLottoMaxDoc::OnBearbeitenAllesloeschen()
{
	// TODO: Fügen Sie hier Ihren Befehlsbehandlungscode ein.
	DeleteContents();
	UpdateAllViews(NULL);
}

void CLottoMaxDoc::OnUpdateBearbeitenAllesloeschen(CCmdUI *pCmdUI)
{
	// TODO: Fügen Sie hier Ihren Befehlsaktualisierungs-UI-Behandlungscode ein.
	pCmdUI-&gt;Enable(!m_lottoList.IsEmpty());
}

void CLottoMaxDoc::OnUpdateFileSave(CCmdUI *pCmdUI)
{
	// TODO: Fügen Sie hier Ihren Befehlsaktualisierungs-UI-Behandlungscode ein.
	pCmdUI-&gt;Enable(IsModified());
}
</code></pre>
<p>Ich habe die gleichen Dateien schon in einem anderen Programm verwendet und da funktioniert alles.</p>
<p>Grüsse und Danke</p>
<p>Franz</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358470</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358470</guid><dc:creator><![CDATA[Franz Hembera]]></dc:creator><pubDate>Tue, 04 Sep 2007 11:36:45 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 10:09:21 GMT]]></title><description><![CDATA[<p>Hier sehe ich keine Problem. Wird denn diese Funktion angesprungen?<br />
Wenn Du debuggst, wo steigt Dein Programm aus?<br />
Was steht in der Debug Ausgabe?</p>
<p>Bist Du sicher, dass die Datei mit der selben Programmversion geschrieben wurde?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358600</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358600</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Tue, 04 Sep 2007 10:09:21 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 10:28:22 GMT]]></title><description><![CDATA[<p>Hallo Martin,</p>
<p>anbei die Debugausgabe:</p>
<p>&quot;LottoMax.exe&quot;: &quot;C:\Dokumente und Einstellungen\Franz Hembera\Eigene Dateien\Visual Studio 2005\Projects\LottoMaxProjekt\debug\LottoMax.exe&quot; geladen, Symbole wurden geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\ntdll.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\kernel32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\WinSxS\x86_Microsoft.VC80.DebugMFC_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_c8452471\mfc80ud.dll&quot; geladen, Symbole wurden geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\WinSxS\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c\msvcr80d.dll&quot; geladen, Symbole wurden geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\msvcrt.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\gdi32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\user32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\shlwapi.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\advapi32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\rpcrt4.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\oleaut32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\ole32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\imm32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\WinSxS\x86_Microsoft.VC80.MFCLOC_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_3415f6d0\mfc80DEU.dll&quot; geladen, Die Binärdaten wurden nicht mit Debuginformationen erstellt.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\uxtheme.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\msctf.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\shell32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\version.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\version.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\msctfime.ime&quot; geladen, Keine Symbole geladen.<br />
Warning: no message line prompt for ID 0x8007.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\comdlg32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\apphelp.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\clbcatq.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\comres.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\version.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\cscui.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\cscdll.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\browseui.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\setupapi.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\ntshrui.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\atl.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\netapi32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\userenv.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\shdocvw.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\crypt32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\msasn1.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\cryptui.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\wintrust.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\imagehlp.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\wininet.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\normaliz.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\iertutil.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\wldap32.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\riched20.dll&quot; geladen, Keine Symbole geladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\riched20.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\browseui.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\shdocvw.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\cryptui.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\wldap32.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\wininet.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\iertutil.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\normaliz.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\wintrust.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\imagehlp.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\crypt32.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\msasn1.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\cscui.dll&quot; entladen.<br />
&quot;LottoMax.exe&quot;: &quot;C:\WINDOWS\system32\cscdll.dll&quot; entladen.<br />
Der Thread 'Win32 Thread' (0xea8) hat mit Code 0 (0x0) geendet.<br />
Der Thread 'Win32 Thread' (0xeb0) hat mit Code 0 (0x0) geendet.<br />
Der Thread 'Win32 Thread' (0xea0) hat mit Code 0 (0x0) geendet.<br />
Der Thread 'Win32 Thread' (0xe84) hat mit Code 0 (0x0) geendet.<br />
Das Programm &quot;[1016] LottoMax.exe: Systemeigen&quot; wurde mit Code 0 (0x0) beendet.</p>
<p>Ich habe mir vor einigen Tagen Die Trial-Version von Visualstudio 2005 heruntergeladen. Mit dieser funktionierte das Programm auch, bis ich gestern versuchte, Typkonvertierungen durchzuführen.</p>
<p>m_strKaw.Format(_T(&quot;%d&quot;), m_nKw);<br />
m_nKw = _ttoi(m_strKaw);<br />
m_dW01 = _ttof(m_strWo01);</p>
<p>Bei _ttof hat der Compiler gemeckert. Also habe ich alle Konvertierungen wieder gelöscht und das Programm so compiliert, wie ich es eingangs hatte. Seither habe ich nun das Problem.</p>
<p>Vielleicht weisst Du jetzt mehr.</p>
<p>Grüsse</p>
<p>Franz</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358616</guid><dc:creator><![CDATA[Franz Hembera]]></dc:creator><pubDate>Tue, 04 Sep 2007 10:28:22 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 11:41:01 GMT]]></title><description><![CDATA[<p>Nulltens: Ich war mal so frei, deinen Beitrag um CPP-Tags zu ergänzen.</p>
<p>Erstens: Ich bin nicht 100% sicher, aber bei der Ausgabe müsstest du evt. Trennzeichen zwischen den einzelnen Daten einhängen, damit sie später wieder auseinandergenommen werden können.</p>
<p>Zweitens: Hast du mal im Debugger beobachtet, wie dein Programm die Daten geschrieben/gelesen hat?</p>
<p>PS: Und die Ausgabe sieht grauenhaft aus - hast du schon mal von Arrays gehört?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358684</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358684</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Tue, 04 Sep 2007 11:41:01 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 12:18:56 GMT]]></title><description><![CDATA[<p>Hallo CStoll,</p>
<p>natütlich habe ich schon mal von Arrays gelesen, aber ich kann damit nichts anfangen. Bringe mir alles selber aus Büchern bei und bin schon zu alt, um einen Kurs zu belegen. Ausserdem fehlen mir die nötigen Mittel.</p>
<p>Deshalb habe ich halt soviele Fragen und ich bin froh, dass es solche Foren gibt, in denen man auch mal etwas fragen oder nachlesen kann.</p>
<p>Ich hoffe, dass ich auf Verständnis stosse!</p>
<p>Grüsse</p>
<p>Franz</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358733</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358733</guid><dc:creator><![CDATA[Franz Hembera]]></dc:creator><pubDate>Tue, 04 Sep 2007 12:18:56 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Tue, 04 Sep 2007 12:29:46 GMT]]></title><description><![CDATA[<p>Okay, einmal Arrays für Anfänger in der Kurzfassung. <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="😉"
    /></p>
<p>So deklarierst du ein CArray. Das in den spitzen Klammern ist der Typ den du speichern möchtest.</p>
<pre><code class="language-cpp">CArray&lt;int, int&gt; arrZahlen;
</code></pre>
<p>So packst du was rein:</p>
<pre><code class="language-cpp">arrZahlen.Add(1);
arrZahlen.Add(3);
</code></pre>
<p>So holst du was raus:</p>
<pre><code class="language-cpp">int a = arrZahlen.GetAt(0);
</code></pre>
<p>Also, das ist dann hinterher noch drin, du holst nur eine Kopie.</p>
<p>Okay? Frag einfach wenn dir noch was fehlt - ich schreib nur so ungern Dinge die du schon weißt oder duch einen Schubs in die richtige Richtung selbst rausgefunden hast. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1358740</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1358740</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Tue, 04 Sep 2007 12:29:46 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Thu, 06 Sep 2007 11:08:24 GMT]]></title><description><![CDATA[<p>Leider habe ich von Arrays noch gar keine Ahnung, werde mich aber in der nächsten Zeit mal damit auseinandersetzen. Bei Bedarf werde ich mich an Dich wenden!</p>
<p>Übrigend habe ich meinen PC neu formatiert, da mir das Visualstudio 2005 alle bereits erstellten mit VC++ 6.0 Programme demoliert hat.</p>
<p>Kann es sein, dass sich die beiden nicht vertragen?</p>
<p>Danke und Grüsse</p>
<p>Franz</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1360134</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1360134</guid><dc:creator><![CDATA[Franz Hembera]]></dc:creator><pubDate>Thu, 06 Sep 2007 11:08:24 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Thu, 06 Sep 2007 11:24:48 GMT]]></title><description><![CDATA[<p>Franz Hembera schrieb:</p>
<blockquote>
<p>Leider habe ich von Arrays noch gar keine Ahnung, werde mich aber in der nächsten Zeit mal damit auseinandersetzen. Bei Bedarf werde ich mich an Dich wenden!</p>
<p>Übrigend habe ich meinen PC neu formatiert, da mir das Visualstudio 2005 alle bereits erstellten mit VC++ 6.0 Programme demoliert hat.</p>
<p>Kann es sein, dass sich die beiden nicht vertragen?</p>
</blockquote>
<p>Ich habe drei verschiedene VS Version 6.0, .NET 2003 und die 2005 Version auf diesem Rechner. Da beisst sich gar nichts und demolieren tut VS2005 auch nichts.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1360150</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1360150</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Thu, 06 Sep 2007 11:24:48 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler bei .exe on Thu, 06 Sep 2007 12:50:06 GMT]]></title><description><![CDATA[<p><strong>Du darfst nur ein Projekt nicht mal mit dem einen und mal mit dem anderen öffnen.</strong><br />
Sonst vertragen sich bei mir VC6 und VC2003 seit Jahren gut. Und auch auf dem PC wo ich mal VC6 und VC2005 drauf hatte, konnte ich keine Probleme feststellen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1360202</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1360202</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Thu, 06 Sep 2007 12:50:06 GMT</pubDate></item></channel></rss>