<?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[Seit Einfügen eines 2ten Konstruktors Fehler beim Aufruf von Klassenas.]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe in meiner Klasse einen zweiten Konstruktor mit anderen Parameter als dem Standardkonstruktor eingefügt. Seit dem habe ich das Problem, dass der Klassenassistent jedesmal meckert, wenn ich diesen benutzen möchte. Dann kommt die Fehlermeldung, dass ein doppelter Einfügeblock für meine Klasse in den Quellcodedateien vorherrscht. Nachdem ich diese Meldung mit ok bestätige, erscheint mein Klassenassistent, jetzt erhalte ich aber keine Informationen über methoden, member-Variablen etc. in meiner Klasse...</p>
<p>..was kann da das Problem sein...warum meckert er das an...und wie kann ich das verhindern?</p>
<p>gruss,</p>
<p>chullain</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/80325/seit-einfügen-eines-2ten-konstruktors-fehler-beim-aufruf-von-klassenas</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 06:34:52 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/80325.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 20 Jul 2004 09:33:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Seit Einfügen eines 2ten Konstruktors Fehler beim Aufruf von Klassenas. on Tue, 20 Jul 2004 09:33:44 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe in meiner Klasse einen zweiten Konstruktor mit anderen Parameter als dem Standardkonstruktor eingefügt. Seit dem habe ich das Problem, dass der Klassenassistent jedesmal meckert, wenn ich diesen benutzen möchte. Dann kommt die Fehlermeldung, dass ein doppelter Einfügeblock für meine Klasse in den Quellcodedateien vorherrscht. Nachdem ich diese Meldung mit ok bestätige, erscheint mein Klassenassistent, jetzt erhalte ich aber keine Informationen über methoden, member-Variablen etc. in meiner Klasse...</p>
<p>..was kann da das Problem sein...warum meckert er das an...und wie kann ich das verhindern?</p>
<p>gruss,</p>
<p>chullain</p>
]]></description><link>https://www.c-plusplus.net/forum/post/564279</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/564279</guid><dc:creator><![CDATA[chullain]]></dc:creator><pubDate>Tue, 20 Jul 2004 09:33:44 GMT</pubDate></item><item><title><![CDATA[Reply to Seit Einfügen eines 2ten Konstruktors Fehler beim Aufruf von Klassenas. on Tue, 20 Jul 2004 09:45:08 GMT]]></title><description><![CDATA[<p>hm, wie wärs mal mit Sourcecode ???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/564285</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/564285</guid><dc:creator><![CDATA[slkdfjal]]></dc:creator><pubDate>Tue, 20 Jul 2004 09:45:08 GMT</pubDate></item><item><title><![CDATA[Reply to Seit Einfügen eines 2ten Konstruktors Fehler beim Aufruf von Klassenas. on Tue, 20 Jul 2004 09:57:58 GMT]]></title><description><![CDATA[<p>*<strong>.h-Datei</strong></p>
<pre><code class="language-cpp">#if !defined(AFX_USERMATCH_H__84FBA5B8_4B04_4627_8E9F_2FFFBFAC4741__INCLUDED_)
#define AFX_USERMATCH_H__84FBA5B8_4B04_4627_8E9F_2FFFBFAC4741__INCLUDED_

#if _MSC_VER &gt; 1000
#pragma once
#endif // _MSC_VER &gt; 1000
// UserMatch.h : Header-Datei
//

/////////////////////////////////////////////////////////////////////////////
// Dialogfeld CUserMatch 

class CUserMatch : public CDialog
{
// Konstruktion
public:
	CUserMatch(CWnd* pParent = NULL);   // Standardkonstruktor
	CUserMatch(SAFEARRAY mUsers, CWnd* pParent = NULL); //Konstruktor mit RpConnection-Objekt
	ISaGsaRpTransaction RpTransaction;
	ISaGsaRpConnection RpConnection;
	long lLBoundUser, lUBoundUser;  
	VARIANT avobjUsers, vVal;
	SAFEARRAY *users;
	ISaGsaRpObject objUser;

// Dialogfelddaten
	//{{AFX_DATA(CUserMatch)
	enum { IDD = IDD_MATCH_USER };
	CListBox	m_MUnchangedUser;
	CListBox	m_MOldUser;
	CListBox	m_MNewUser;
	CString	m_MFilePath;
	//}}AFX_DATA

// Überschreibungen
	// Vom Klassen-Assistenten generierte virtuelle Funktionsüberschreibungen
	//{{AFX_VIRTUAL(CUserMatch)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV-Unterstützung
	//}}AFX_VIRTUAL

// Implementierung
protected:

	// Generierte Nachrichtenzuordnungsfunktionen
	//{{AFX_MSG(CUserMatch)
	virtual BOOL OnInitDialog();
	afx_msg void OnMatch();
	afx_msg void OnDir();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.

#endif // AFX_USERMATCH_H__84FBA5B8_4B04_4627_8E9F_2FFFBFAC4741__INCLUDED_
</code></pre>
<p>*<em>Anfang von <em>.cpp-Datei</em></em></p>
<pre><code class="language-cpp">// UserMatch.cpp: Implementierungsdatei
//

#include &quot;stdafx.h&quot;

#include &lt;stdio.h&gt;
#include &quot;UserInfo.h&quot;
#include &quot;UserMatch.h&quot;
#include &quot;UserDlg.h&quot;
#include&lt;vector&gt;  

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// Dialogfeld CUserMatch 

CUserMatch::CUserMatch(CWnd* pParent /*=NULL*/)
	: CDialog(CUserMatch::IDD, pParent)
{
	//{{AFX_DATA_INIT(CUserMatch)
	m_MFilePath = _T(&quot;&quot;);
	//}}AFX_DATA_INIT
}

CUserMatch::CUserMatch(SAFEARRAY mUsers, CWnd* pParent)
	: CDialog(CUserMatch::IDD, pParent)
{
	//{{AFX_DATA_INIT(CUserMatch)
	m_MFilePath = _T(&quot;&quot;);
	users = &amp;mUsers;
	//}}AFX_DATA_INIT
}

void CUserMatch::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CUserMatch)
	DDX_Control(pDX, IDC_LIST5, m_MUnchangedUser);
	DDX_Control(pDX, IDC_LIST4, m_MOldUser);
	DDX_Control(pDX, IDC_LIST1, m_MNewUser);
	DDX_Text(pDX, IDC_EDIT1, m_MFilePath);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CUserMatch, CDialog)
	//{{AFX_MSG_MAP(CUserMatch)
	ON_BN_CLICKED(ID_MATCH, OnMatch)
	ON_BN_CLICKED(ID_DIR, OnDir)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()
</code></pre>
<p>...ist ziemlich viel, ich weiss, aber ich hab ka Ahnung warum er das macht...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/564296</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/564296</guid><dc:creator><![CDATA[chullain]]></dc:creator><pubDate>Tue, 20 Jul 2004 09:57:58 GMT</pubDate></item><item><title><![CDATA[Reply to Seit Einfügen eines 2ten Konstruktors Fehler beim Aufruf von Klassenas. on Tue, 20 Jul 2004 10:19:34 GMT]]></title><description><![CDATA[<p>Lösch die //{{AFX_DATA_INIT - Kommentare aus deinem 2. Konstruktor.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/564311</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/564311</guid><dc:creator><![CDATA[ppc]]></dc:creator><pubDate>Tue, 20 Jul 2004 10:19:34 GMT</pubDate></item><item><title><![CDATA[Reply to Seit Einfügen eines 2ten Konstruktors Fehler beim Aufruf von Klassenas. on Tue, 20 Jul 2004 11:25:43 GMT]]></title><description><![CDATA[<p>Vielen Dank, hat auch funktioniert...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/564352</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/564352</guid><dc:creator><![CDATA[chullain]]></dc:creator><pubDate>Tue, 20 Jul 2004 11:25:43 GMT</pubDate></item></channel></rss>