<?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[screenshot code mit borland-compiler]]></title><description><![CDATA[<p>hallo, ich habe den kostenlosen konsolen-c++-compiler von borland.<br />
nun wollte ich die codes ,um einen screenshot zu machen, aus den faqs compilen aber es ging nicht.<br />
geht das nicht mit meinem compiler, oder kennt ihr einen code der mit diesem<br />
compiler funktioniert?</p>
<p>danke schonmal!!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/75654/screenshot-code-mit-borland-compiler</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 05:38:29 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/75654.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 02 Jun 2004 20:21:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Wed, 02 Jun 2004 20:22:36 GMT]]></title><description><![CDATA[<p>hallo, ich habe den kostenlosen konsolen-c++-compiler von borland.<br />
nun wollte ich die codes ,um einen screenshot zu machen, aus den faqs compilen aber es ging nicht.<br />
geht das nicht mit meinem compiler, oder kennt ihr einen code der mit diesem<br />
compiler funktioniert?</p>
<p>danke schonmal!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/531961</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/531961</guid><dc:creator><![CDATA[babelduo]]></dc:creator><pubDate>Wed, 02 Jun 2004 20:22:36 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Wed, 02 Jun 2004 20:24:40 GMT]]></title><description><![CDATA[<p>Ohne weitere Infos können wir dir nicht helfen.<br />
Welcher Code compiliert denn nicht und welche Fehlermeldungen bekommst du dabei?<br />
Normalerweise müsste der Borland Compiler den Code doch auch compilieren können.<br />
Hast du vielleicht beim Installieren irgendetwas nicht beachtet?<br />
Oder beim Compilieren vergessen, den Include-Path anzugeben?<br />
Ich will jetzt aber nicht weiter raten..</p>
]]></description><link>https://www.c-plusplus.net/forum/post/531962</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/531962</guid><dc:creator><![CDATA[ChrissiB]]></dc:creator><pubDate>Wed, 02 Jun 2004 20:24:40 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 07:52:48 GMT]]></title><description><![CDATA[<p>hast du überhaupt schon mal was compilieren können ?<br />
check mal die ilink32.cfg und bcc32.cfg ??<br />
z.B.<br />
<a href="http://apurvaslair.50g.com/cpp/compilers/borland.html" rel="nofollow">http://apurvaslair.50g.com/cpp/compilers/borland.html</a><br />
viel glück <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>
]]></description><link>https://www.c-plusplus.net/forum/post/532125</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532125</guid><dc:creator><![CDATA[cc2k4]]></dc:creator><pubDate>Thu, 03 Jun 2004 07:52:48 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 13:17:03 GMT]]></title><description><![CDATA[<p>also ich kenne mich echt nich nicht gut in diesem thema und habe<br />
versucht den code aus der FQS (<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39167" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=39167</a>)<br />
zu compilieren. ich habs so umgeschrieben:</p>
<pre><code>#include &lt;windows.h&gt;
#include &lt;iostream.h&gt;
#include &lt;stdio.h&gt;

void __fastcall TForm1::MakeScreenShot(HWND handle, TImage* image)
{
    TCanvas* canvas = new TCanvas();
    canvas-&gt;Handle = GetWindowDC(handle);

    TRect Dest   = Image1-&gt;ClientRect;
    TRect Source;
    GetWindowRect(handle, (LPRECT)&amp;Source);
    Source = Rect(0, 0, Source.Right - Source.Left, Source.Bottom - Source.Top);

    image-&gt;Canvas-&gt;CopyRect(Dest, canvas, Source);
    delete canvas;
}

int main() {

MakeScreenShot([Fensterhandle], Image1);

}
</code></pre>
<p>also es kommten 2 fehler:</p>
<pre><code>Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
test.cpp:
Error E2090 test.cpp 6: Qualifier 'TForm1' is not a class or namespace name
Error E2040 test.cpp 6: Declaration terminated incorrectly
*** 2 errors in Compile ***
</code></pre>
<p>was habe ich falsch gemacht?<br />
oder ist das ein falscher code? ich bräuchte einen der unter meinem<br />
borland c++ 5.5.1 compiler funktioniert, da ich mit dem sehr gut<br />
klar komme!</p>
<p>p.s: es wäre auch sehr nett, wenn ihr mir saen könntet wie ich den screenshot<br />
dann auf der festplatte abspeichere! thx!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/532331</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532331</guid><dc:creator><![CDATA[babelduo]]></dc:creator><pubDate>Thu, 03 Jun 2004 13:17:03 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 19:56:58 GMT]]></title><description><![CDATA[<p>Um TForm und TCanvas, etc. zu benutzen müsstest du erstmal die VCL includen. Ich bezweifele aber, daß diese überhaupt beim dem Compiler dabei ist/war. Alsu musst du schon alles so umschreiben, das du die VCL nicht brauchst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/532621</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532621</guid><dc:creator><![CDATA[Marmey]]></dc:creator><pubDate>Thu, 03 Jun 2004 19:56:58 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 20:10:22 GMT]]></title><description><![CDATA[<p><strong>babelduo</strong><br />
Was hat TForm1 und TCanvas mit C++ zu tun? Genau so viel wie Nicky Lauder mit Fussball: NICHTS.</p>
<p>TForm1 ist eine Klasse aus der VCL und die kannst Du in einer Win32 Console Application nicht benutzen.</p>
<p>Nebenbei:<br />
1. Fehler no. 1:</p>
<pre><code class="language-cpp">#include &lt;iostream.h&gt;
</code></pre>
<p>2. Fehler no. 2:</p>
<pre><code class="language-cpp">#include &lt;stdio.h&gt;
</code></pre>
<p>3. Fehler no. 3:</p>
<pre><code class="language-cpp">return 0; // fehlt
</code></pre>
<p>4. Hinweis no. 1:</p>
<pre><code class="language-cpp">Parameterliste bei main
</code></pre>
<p>Du solltest Deine Vorgehensweise überdenken.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/532638</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532638</guid><dc:creator><![CDATA[nix da]]></dc:creator><pubDate>Thu, 03 Jun 2004 20:10:22 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 20:49:14 GMT]]></title><description><![CDATA[<p>parameterliste bei main ist laut stdandard nicht nötig</p>
<p>btw VCL kann man da auch nutzen man muss natürlich auch die richtigen sachen includen. &lt;vcl.h&gt;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/532676</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532676</guid><dc:creator><![CDATA[b7f7]]></dc:creator><pubDate>Thu, 03 Jun 2004 20:49:14 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 20:43:37 GMT]]></title><description><![CDATA[<p><strong>b7f7</strong><br />
Im Standard nicht aber im Stand-art <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/532680</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532680</guid><dc:creator><![CDATA[nix da]]></dc:creator><pubDate>Thu, 03 Jun 2004 20:43:37 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Thu, 03 Jun 2004 20:49:48 GMT]]></title><description><![CDATA[<p>wo?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/532690</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/532690</guid><dc:creator><![CDATA[b7f7]]></dc:creator><pubDate>Thu, 03 Jun 2004 20:49:48 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Sun, 06 Jun 2004 16:14:49 GMT]]></title><description><![CDATA[<p>hmm ok das hilft mir nun ehrlich gesagt nicht richtig weiter!<br />
kennt ihr denn einen code der mit dem borland compiler funktioniert, oder<br />
könnt ihr mir sagen/zeigen was ich an diesem code ändern muss??</p>
<p>das wäre echt nett! <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/534369</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/534369</guid><dc:creator><![CDATA[babelduo]]></dc:creator><pubDate>Sun, 06 Jun 2004 16:14:49 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Mon, 07 Jun 2004 16:03:55 GMT]]></title><description><![CDATA[<p>ich weis ich nerfe euch damit aber es wäre mir echt wichtig!<br />
was genau muss ich tun damit ich mit meinem borland-compiler einen<br />
screenshot machen kann? geht das nur mit vcl, und wenn was ist das genau?</p>
<p>danke schonmal ...</p>
<p>p.s: ein beispielcode wäre für mich natürlich gut, denn wenn ihr mir einen<br />
code gibt und sagt das ich das und das noch umschreiben muss, weis ich nicht<br />
genau was ich machen soll da ich noch nicht lange programmiere!</p>
<p>thx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/535254</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/535254</guid><dc:creator><![CDATA[babelduo]]></dc:creator><pubDate>Mon, 07 Jun 2004 16:03:55 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Mon, 07 Jun 2004 16:08:52 GMT]]></title><description><![CDATA[<p>das ist zu schwer für den anfang, da standard c++ dies nicht kann.<br />
für sowas sollte man die api seiner wahl nehmen.<br />
mach erstmal was andres...zb komm erstmal mit dem compiler klar <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/535260</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/535260</guid><dc:creator><![CDATA[otze]]></dc:creator><pubDate>Mon, 07 Jun 2004 16:08:52 GMT</pubDate></item><item><title><![CDATA[Reply to screenshot code mit borland-compiler on Tue, 08 Jun 2004 15:35:07 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile.php?mode=viewprofile&amp;u=403" rel="nofollow">HumeSikkins</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=15" rel="nofollow">C++</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=4" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39405" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/536135</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/536135</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Tue, 08 Jun 2004 15:35:07 GMT</pubDate></item></channel></rss>