<?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!!]]></title><description><![CDATA[<p>Hallo alle mit einander,</p>
<p>ich habe folgendes Problem, und zwar bekomme ich immer diesen Fehler wenn ich mein programm zu laufen bringen will&quot;</p>
<p>P.S. Das Programm hat unter dem Programm &quot;Borland 5.0.2&quot; funktioniert jetzt aber mit Visual C++ funktioniert es nicht mehr! Wieso ist das so?</p>
<p>Fehler:</p>
<pre><code class="language-cpp">--------------------Konfiguration: CRahmen - Win32 Debug--------------------
Kompilierung läuft...
cfrahmen.cpp
Linker-Vorgang läuft...
cfrahmen.obj : error LNK2001: Nichtaufgeloestes externes Symbol &quot;public: void __thiscall CRahmen::gotoxy(int,int)&quot; (?gotoxy@CRahmen@@QAEXHH@Z)
Debug/CRahmen.exe : fatal error LNK1120: 1 unaufgeloeste externe Verweise
Fehler beim Ausführen von link.exe.

CRahmen.exe - 2 Fehler, 0 Warnung(en)
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/135926/fehler</link><generator>RSS for Node</generator><lastBuildDate>Sat, 29 Aug 2026 06:11:23 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/135926.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 06 Feb 2006 09:19:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:19:36 GMT]]></title><description><![CDATA[<p>Hallo alle mit einander,</p>
<p>ich habe folgendes Problem, und zwar bekomme ich immer diesen Fehler wenn ich mein programm zu laufen bringen will&quot;</p>
<p>P.S. Das Programm hat unter dem Programm &quot;Borland 5.0.2&quot; funktioniert jetzt aber mit Visual C++ funktioniert es nicht mehr! Wieso ist das so?</p>
<p>Fehler:</p>
<pre><code class="language-cpp">--------------------Konfiguration: CRahmen - Win32 Debug--------------------
Kompilierung läuft...
cfrahmen.cpp
Linker-Vorgang läuft...
cfrahmen.obj : error LNK2001: Nichtaufgeloestes externes Symbol &quot;public: void __thiscall CRahmen::gotoxy(int,int)&quot; (?gotoxy@CRahmen@@QAEXHH@Z)
Debug/CRahmen.exe : fatal error LNK1120: 1 unaufgeloeste externe Verweise
Fehler beim Ausführen von link.exe.

CRahmen.exe - 2 Fehler, 0 Warnung(en)
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/987136</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987136</guid><dc:creator><![CDATA[Pyccak]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:19:36 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:24:25 GMT]]></title><description><![CDATA[<p>Du hast vergessen, die Datei mitzucompilieren oder zu linken, in der die CRahmen::gotoxy()-Methode definiert ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987140</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987140</guid><dc:creator><![CDATA[CStoll (off)]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:24:25 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:27:11 GMT]]></title><description><![CDATA[<p>Wie kann man den sowas vergessen bzw wie kann ich die Datei Linken? etc</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987143</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987143</guid><dc:creator><![CDATA[Pyccak]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:27:11 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:30:53 GMT]]></title><description><![CDATA[<p>Pyccak schrieb:</p>
<blockquote>
<p>Wie kann man den sowas vergessen</p>
</blockquote>
<p>Keine Ahnung, warum du das vergessen hast - Zwischenfrage: Ist CRahmen eine selbstgeschriebene Klasse oder stammt die vom Borland-Compiler?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987147</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987147</guid><dc:creator><![CDATA[CStoll (off)]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:30:53 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:34:21 GMT]]></title><description><![CDATA[<p>ja CFRahmen wurde selbst geschrieben!<br />
Ich kann dir ja man den Code reinkopieren also von CFRahmen:</p>
<pre><code class="language-cpp">#include &quot;cfrahmen.h&quot;
#include &quot;iostream.h&quot;
#include &quot;conio.h&quot; // z.B. für getch();
#include &quot;stdlib.h&quot;
#include &quot;windows.h&quot;  // z.B. für Cursor-Steuerung

CRahmen :: CRahmen()
{
	xPos = 5;
	yPos = 5;
	RahmenB = 15;
	RahmenH = 10;
	visible = true;
	Print();
}
CRahmen :: CRahmen(int firstxPos, int firstyPos, int firstRahmenB, int firstRahmenH, bool visibleNew)
{
	xPos = firstxPos;
	yPos = firstyPos;

	RahmenB = firstRahmenB;
	RahmenH = firstRahmenH;

	visible = visibleNew;
}
CRahmen :: ~CRahmen()
{

}
void gotoxy(int xPos, int yPos)
{
     COORD c;
     c.X=xPos-1;
     c.Y=yPos-1; 
     SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),c);
}
void CRahmen :: SetSize(int neuRahmenB, int neuRahmenH)
{
  if ( visible == true )
  {
    Hide();
    RahmenB = neuRahmenB;
    RahmenH = neuRahmenH;
    Show();
  }
  else
  {
    RahmenB = neuRahmenB;
    RahmenH = neuRahmenH;
    Show();
  }
    Print();
}
void CRahmen :: SetPos(int xPosNeu, int yPosNeu)
{
  if ( visible == true )
  {
	Hide();	
	xPos = xPosNeu;
	yPos = yPosNeu;
	Show();
  }
  else
  {        
	xPos = xPosNeu;
	yPos = yPosNeu;
	Show();
  }
  Print();
}
void CRahmen :: Print()
{	
	//FRahmen(xPos, yPos, xPos+RahmenB, yPos+RahmenH, visible);

	char Zeichen;
	if(visible == true)
	{
		Zeichen = '*';
	}
	else
	{
		Zeichen = ' ';
	}
	gotoxy(xPos, yPos);

	for (int i = xPos; i &lt; xPos+RahmenB; i++)
	{
		cout &lt;&lt; Zeichen;
	}
	gotoxy(xPos, yPos+RahmenH-1);

	for (int j = xPos; j &lt; yPos+RahmenB; j++)
	{
		cout &lt;&lt; Zeichen;
	}
	for (int k = yPos+1; k &lt;= yPos+RahmenH; k++)
	{
        gotoxy(xPos, k-1);
		cout &lt;&lt; Zeichen;
	}
	for (int l = yPos+1; l &lt;= yPos+RahmenH; l++)
	{
        gotoxy(xPos + RahmenB - 1, l - 1);
		cout &lt;&lt; Zeichen;
	}
}
void CRahmen :: Hide()
{
	visible = false;
	Print();
}
void CRahmen :: Show()
{
	visible = true;
	Print();
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/987151</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987151</guid><dc:creator><![CDATA[Pyccak]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:34:21 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:38:26 GMT]]></title><description><![CDATA[<p>Pyccak schrieb:</p>
<blockquote>
<pre><code class="language-cpp">void gotoxy(int xPos, int yPos)
</code></pre>
</blockquote>
<p>Na, was ist hier anders als bei den anderen Methoden?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987156</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987156</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:38:26 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:37:54 GMT]]></title><description><![CDATA[<p>hier</p>
<p>void gotoxy(int xPos, int yPos)<br />
wenn du die funktion als methode in der klasse hast, dann den bereichzugriff machen und der klasse die implementierung damit bekannt geben</p>
<p>void CRahmen ::gotoxy...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987157</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987157</guid><dc:creator><![CDATA[elise]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:37:54 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 09:39:49 GMT]]></title><description><![CDATA[<p>hahahaha <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /> oh man ich seh das seit 3 tagen nicht</p>
<p>danke <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/987159</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987159</guid><dc:creator><![CDATA[Pyccak]]></dc:creator><pubDate>Mon, 06 Feb 2006 09:39:49 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 11:12:47 GMT]]></title><description><![CDATA[<p>Wundert mich aber das es mit Borland Compiler funktionieren soll...<br />
Oder hast du die Funktion erst hinzugefügt nachdem du auf den VC++ umgestiegen bist?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987262</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987262</guid><dc:creator><![CDATA[Beliah]]></dc:creator><pubDate>Mon, 06 Feb 2006 11:12:47 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 11:14:53 GMT]]></title><description><![CDATA[<p>So noch eine Frage,<br />
wie kriege ich es jetzt hin das der Rahmen sich bewegt mit den &quot;Pfeil-Tasten&quot;</p>
<p>danke <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/987267</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987267</guid><dc:creator><![CDATA[Pyccak]]></dc:creator><pubDate>Mon, 06 Feb 2006 11:14:53 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler!! on Mon, 06 Feb 2006 11:18:24 GMT]]></title><description><![CDATA[<p>Beliah schrieb:</p>
<blockquote>
<p>Wundert mich aber das es mit Borland Compiler funktionieren soll...<br />
Oder hast du die Funktion erst hinzugefügt nachdem du auf den VC++ umgestiegen bist?</p>
</blockquote>
<p>Die funktion gotoxy funktioniert irgentwie bei Borland schon von alleine! zumindest bei der Version 5.0.2</p>
]]></description><link>https://www.c-plusplus.net/forum/post/987272</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/987272</guid><dc:creator><![CDATA[Pyccak]]></dc:creator><pubDate>Mon, 06 Feb 2006 11:18:24 GMT</pubDate></item></channel></rss>