<?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[Kann mir jmd. aus dem code nen Programm machen?]]></title><description><![CDATA[<p>Hi, ich müßte mal testen ob der code so funktioniert das ich unter vista keine schwarzen ingame-screenshots mehr bekomme. Am besten wäre es wenn einfach nen shortcut auf &quot;p&quot; ist der dann nen screen macht und der auf dem desktop landet.</p>
<p>Könnte mir da jmd. fix was basteln?</p>
<p>vielen Dank!</p>
<pre><code>1.
      #include&lt;iostream&gt;
   2.
      #include&lt;windows.h&gt;
   3.
      using namespace std;
   4.

   5.
      inline int GetFilePointer(HANDLE FileHandle){
   6.
      return SetFilePointer(FileHandle, 0, 0, FILE_CURRENT);
   7.
      }
   8.

   9.
      bool SaveBMPFile(char *filename, HBITMAP bitmap, HDC bitmapDC, int width, int height){
  10.
      bool Success=0;
  11.
      HDC SurfDC=NULL;
  12.
      HBITMAP OffscrBmp=NULL;
  13.
      HDC OffscrDC=NULL;
  14.
      LPBITMAPINFO lpbi=NULL;
  15.
      LPVOID lpvBits=NULL;
  16.
      HANDLE BmpFile=INVALID_HANDLE_VALUE;
  17.
      BITMAPFILEHEADER bmfh;
  18.
      if ((OffscrBmp = CreateCompatibleBitmap(bitmapDC, width, height)) == NULL)
  19.
      return 0;
  20.
      if ((OffscrDC = CreateCompatibleDC(bitmapDC)) == NULL)
  21.
      return 0;
  22.
      HBITMAP OldBmp = (HBITMAP)SelectObject(OffscrDC, OffscrBmp);
  23.
      BitBlt(OffscrDC, 0, 0, width, height, bitmapDC, 0, 0, SRCCOPY);
  24.
      if ((lpbi = (LPBITMAPINFO)(new char[sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD)])) == NULL)
  25.
      return 0;
  26.
      ZeroMemory(&amp;lpbi-&gt;bmiHeader, sizeof(BITMAPINFOHEADER));
  27.
      lpbi-&gt;bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
  28.
      SelectObject(OffscrDC, OldBmp);
  29.
      if (!GetDIBits(OffscrDC, OffscrBmp, 0, height, NULL, lpbi, DIB_RGB_COLORS))
  30.
      return 0;
  31.
      if ((lpvBits = new char[lpbi-&gt;bmiHeader.biSizeImage]) == NULL)
  32.
      return 0;
  33.
      if (!GetDIBits(OffscrDC, OffscrBmp, 0, height, lpvBits, lpbi, DIB_RGB_COLORS))
  34.
      return 0;
  35.
      if ((BmpFile = CreateFile(filename,
  36.
      GENERIC_WRITE,
  37.
      0, NULL,
  38.
      CREATE_ALWAYS,
  39.
      FILE_ATTRIBUTE_NORMAL,
  40.
      NULL)) == INVALID_HANDLE_VALUE)
  41.
      return 0;
  42.
      DWORD Written;
  43.
      bmfh.bfType = 19778;
  44.
      bmfh.bfReserved1 = bmfh.bfReserved2 = 0;
  45.
      if (!WriteFile(BmpFile, &amp;bmfh, sizeof(bmfh), &amp;Written, NULL))
  46.
      return 0;
  47.
      if (Written &lt; sizeof(bmfh))
  48.
      return 0;
  49.
      if (!WriteFile(BmpFile, &amp;lpbi-&gt;bmiHeader, sizeof(BITMAPINFOHEADER), &amp;Written, NULL))
  50.
      return 0;
  51.
      if (Written &lt; sizeof(BITMAPINFOHEADER))
  52.
      return 0;
  53.
      int PalEntries;
  54.
      if (lpbi-&gt;bmiHeader.biCompression == BI_BITFIELDS)
  55.
      PalEntries = 3;
  56.
      else PalEntries = (lpbi-&gt;bmiHeader.biBitCount &lt;= 8) ?
  57.
      (int)(1 &lt;&lt; lpbi-&gt;bmiHeader.biBitCount) : 0;
  58.
      if(lpbi-&gt;bmiHeader.biClrUsed)
  59.
      PalEntries = lpbi-&gt;bmiHeader.biClrUsed;
  60.
      if(PalEntries){
  61.
      if (!WriteFile(BmpFile, &amp;lpbi-&gt;bmiColors, PalEntries * sizeof(RGBQUAD), &amp;Written, NULL))
  62.
      return 0;
  63.
      if (Written &lt; PalEntries * sizeof(RGBQUAD))
  64.
      return 0;
  65.
      }
  66.
      bmfh.bfOffBits = GetFilePointer(BmpFile);
  67.
      if (!WriteFile(BmpFile, lpvBits, lpbi-&gt;bmiHeader.biSizeImage, &amp;Written, NULL))
  68.
      return 0;
  69.
      if (Written &lt; lpbi-&gt;bmiHeader.biSizeImage)
  70.
      return 0;
  71.
      bmfh.bfSize = GetFilePointer(BmpFile);
  72.
      SetFilePointer(BmpFile, 0, 0, FILE_BEGIN);
  73.
      if (!WriteFile(BmpFile, &amp;bmfh, sizeof(bmfh), &amp;Written, NULL))
  74.
      return 0;
  75.
      if (Written &lt; sizeof(bmfh))
  76.
      return 0;
  77.
      return 1;
  78.
      }
  79.
      bool ScreenCapture(int x, int y, int width, int height, char *filename){
  80.
      HDC hDc = CreateCompatibleDC(0);
  81.
      HBITMAP hBmp = CreateCompatibleBitmap(GetDC(0), width, height);
  82.
      SelectObject(hDc, hBmp);
  83.
      BitBlt(hDc, 0, 0, width, height, GetDC(0), x, y, SRCCOPY);
  84.
      bool ret = SaveBMPFile(filename, hBmp, hDc, width, height);
  85.
      DeleteObject(hBmp);
  86.
      return ret;
  87.
      }
  88.

  89.
      int main() {
  90.
      int x1 = 0;
  91.
      int y1 = 0;
  92.
      int x2 = GetSystemMetrics(SM_CXSCREEN);
  93.
      int y2 = GetSystemMetrics(SM_CYSCREEN);
  94.
      ScreenCapture(x1, y1, x2 - x1, y2 - y1, &quot;rename_me_before_upload.bmp&quot;);
  95.
      cin.ignore();
  96.
      return 0;
  97.
      }
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/256754/kann-mir-jmd-aus-dem-code-nen-programm-machen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 28 Aug 2026 22:11:30 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/256754.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 17 Dec 2009 12:24:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 12:24:01 GMT]]></title><description><![CDATA[<p>Hi, ich müßte mal testen ob der code so funktioniert das ich unter vista keine schwarzen ingame-screenshots mehr bekomme. Am besten wäre es wenn einfach nen shortcut auf &quot;p&quot; ist der dann nen screen macht und der auf dem desktop landet.</p>
<p>Könnte mir da jmd. fix was basteln?</p>
<p>vielen Dank!</p>
<pre><code>1.
      #include&lt;iostream&gt;
   2.
      #include&lt;windows.h&gt;
   3.
      using namespace std;
   4.

   5.
      inline int GetFilePointer(HANDLE FileHandle){
   6.
      return SetFilePointer(FileHandle, 0, 0, FILE_CURRENT);
   7.
      }
   8.

   9.
      bool SaveBMPFile(char *filename, HBITMAP bitmap, HDC bitmapDC, int width, int height){
  10.
      bool Success=0;
  11.
      HDC SurfDC=NULL;
  12.
      HBITMAP OffscrBmp=NULL;
  13.
      HDC OffscrDC=NULL;
  14.
      LPBITMAPINFO lpbi=NULL;
  15.
      LPVOID lpvBits=NULL;
  16.
      HANDLE BmpFile=INVALID_HANDLE_VALUE;
  17.
      BITMAPFILEHEADER bmfh;
  18.
      if ((OffscrBmp = CreateCompatibleBitmap(bitmapDC, width, height)) == NULL)
  19.
      return 0;
  20.
      if ((OffscrDC = CreateCompatibleDC(bitmapDC)) == NULL)
  21.
      return 0;
  22.
      HBITMAP OldBmp = (HBITMAP)SelectObject(OffscrDC, OffscrBmp);
  23.
      BitBlt(OffscrDC, 0, 0, width, height, bitmapDC, 0, 0, SRCCOPY);
  24.
      if ((lpbi = (LPBITMAPINFO)(new char[sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD)])) == NULL)
  25.
      return 0;
  26.
      ZeroMemory(&amp;lpbi-&gt;bmiHeader, sizeof(BITMAPINFOHEADER));
  27.
      lpbi-&gt;bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
  28.
      SelectObject(OffscrDC, OldBmp);
  29.
      if (!GetDIBits(OffscrDC, OffscrBmp, 0, height, NULL, lpbi, DIB_RGB_COLORS))
  30.
      return 0;
  31.
      if ((lpvBits = new char[lpbi-&gt;bmiHeader.biSizeImage]) == NULL)
  32.
      return 0;
  33.
      if (!GetDIBits(OffscrDC, OffscrBmp, 0, height, lpvBits, lpbi, DIB_RGB_COLORS))
  34.
      return 0;
  35.
      if ((BmpFile = CreateFile(filename,
  36.
      GENERIC_WRITE,
  37.
      0, NULL,
  38.
      CREATE_ALWAYS,
  39.
      FILE_ATTRIBUTE_NORMAL,
  40.
      NULL)) == INVALID_HANDLE_VALUE)
  41.
      return 0;
  42.
      DWORD Written;
  43.
      bmfh.bfType = 19778;
  44.
      bmfh.bfReserved1 = bmfh.bfReserved2 = 0;
  45.
      if (!WriteFile(BmpFile, &amp;bmfh, sizeof(bmfh), &amp;Written, NULL))
  46.
      return 0;
  47.
      if (Written &lt; sizeof(bmfh))
  48.
      return 0;
  49.
      if (!WriteFile(BmpFile, &amp;lpbi-&gt;bmiHeader, sizeof(BITMAPINFOHEADER), &amp;Written, NULL))
  50.
      return 0;
  51.
      if (Written &lt; sizeof(BITMAPINFOHEADER))
  52.
      return 0;
  53.
      int PalEntries;
  54.
      if (lpbi-&gt;bmiHeader.biCompression == BI_BITFIELDS)
  55.
      PalEntries = 3;
  56.
      else PalEntries = (lpbi-&gt;bmiHeader.biBitCount &lt;= 8) ?
  57.
      (int)(1 &lt;&lt; lpbi-&gt;bmiHeader.biBitCount) : 0;
  58.
      if(lpbi-&gt;bmiHeader.biClrUsed)
  59.
      PalEntries = lpbi-&gt;bmiHeader.biClrUsed;
  60.
      if(PalEntries){
  61.
      if (!WriteFile(BmpFile, &amp;lpbi-&gt;bmiColors, PalEntries * sizeof(RGBQUAD), &amp;Written, NULL))
  62.
      return 0;
  63.
      if (Written &lt; PalEntries * sizeof(RGBQUAD))
  64.
      return 0;
  65.
      }
  66.
      bmfh.bfOffBits = GetFilePointer(BmpFile);
  67.
      if (!WriteFile(BmpFile, lpvBits, lpbi-&gt;bmiHeader.biSizeImage, &amp;Written, NULL))
  68.
      return 0;
  69.
      if (Written &lt; lpbi-&gt;bmiHeader.biSizeImage)
  70.
      return 0;
  71.
      bmfh.bfSize = GetFilePointer(BmpFile);
  72.
      SetFilePointer(BmpFile, 0, 0, FILE_BEGIN);
  73.
      if (!WriteFile(BmpFile, &amp;bmfh, sizeof(bmfh), &amp;Written, NULL))
  74.
      return 0;
  75.
      if (Written &lt; sizeof(bmfh))
  76.
      return 0;
  77.
      return 1;
  78.
      }
  79.
      bool ScreenCapture(int x, int y, int width, int height, char *filename){
  80.
      HDC hDc = CreateCompatibleDC(0);
  81.
      HBITMAP hBmp = CreateCompatibleBitmap(GetDC(0), width, height);
  82.
      SelectObject(hDc, hBmp);
  83.
      BitBlt(hDc, 0, 0, width, height, GetDC(0), x, y, SRCCOPY);
  84.
      bool ret = SaveBMPFile(filename, hBmp, hDc, width, height);
  85.
      DeleteObject(hBmp);
  86.
      return ret;
  87.
      }
  88.

  89.
      int main() {
  90.
      int x1 = 0;
  91.
      int y1 = 0;
  92.
      int x2 = GetSystemMetrics(SM_CXSCREEN);
  93.
      int y2 = GetSystemMetrics(SM_CYSCREEN);
  94.
      ScreenCapture(x1, y1, x2 - x1, y2 - y1, &quot;rename_me_before_upload.bmp&quot;);
  95.
      cin.ignore();
  96.
      return 0;
  97.
      }
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1823940</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823940</guid><dc:creator><![CDATA[Rene1981]]></dc:creator><pubDate>Thu, 17 Dec 2009 12:24:01 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 12:28:07 GMT]]></title><description><![CDATA[<p>Was sollen denn diese ganzen double-Literale im Code?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1823944</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823944</guid><dc:creator><![CDATA[_matze]]></dc:creator><pubDate>Thu, 17 Dec 2009 12:28:07 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 12:50:35 GMT]]></title><description><![CDATA[<p>Der code ist hier her: <a href="http://www.daniweb.com/forums/thread189901.html#" rel="nofollow">http://www.daniweb.com/forums/thread189901.html#</a></p>
<p>Ich muss ma testen ob die screens bei vista damit nicht mehr schwarz sind.</p>
<p><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/1823955</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823955</guid><dc:creator><![CDATA[Rene1981]]></dc:creator><pubDate>Thu, 17 Dec 2009 12:50:35 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 13:14:09 GMT]]></title><description><![CDATA[<p>Dann compiles doch selbst..</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1823963</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823963</guid><dc:creator><![CDATA[drakon]]></dc:creator><pubDate>Thu, 17 Dec 2009 13:14:09 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 13:18:57 GMT]]></title><description><![CDATA[<p>HAb leider keine Möglichkeit und auch keine Kenntnisse in C++.<br />
Der coder ist bis nächste Woche leider off, der das für uns schreibt. Ich vesuch bis dahin eine Lösung zu finden damit er gleich weiterarbeiten kann. Ausserdem muss ich noch iwie nen shortvut auf z.b. &quot;p&quot; einbaun, das dann nen screenshot gemacht wird und auf dem desktop landet.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1823964</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823964</guid><dc:creator><![CDATA[amokossi]]></dc:creator><pubDate>Thu, 17 Dec 2009 13:18:57 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 13:54:15 GMT]]></title><description><![CDATA[<p><a href="http://www.rentacoder.com" rel="nofollow">Hilfe gibt´s hier</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1823983</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823983</guid><dc:creator><![CDATA[DocShoe]]></dc:creator><pubDate>Thu, 17 Dec 2009 13:54:15 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 14:08:50 GMT]]></title><description><![CDATA[<p>Das ist ja das gute am Forum..Wenn man nett fragt, bekommt ma ab und an auch mal Hilfe. Leider hab ich nicht das Geld jemanden zu bezahlen. Das Tool soll ja auc nicht in Ligen oder ähnlichem verwendet werden. Jmd. anderes meinte den code + shortkey in nen programm zu bringen dauert ca 15 min. Nur leider hatte der keine Zeit...</p>
<p>Evtl. findet sich ja jmd.</p>
<p>vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1823988</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1823988</guid><dc:creator><![CDATA[amokossi]]></dc:creator><pubDate>Thu, 17 Dec 2009 14:08:50 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 14:56:45 GMT]]></title><description><![CDATA[<p>Google hilft dir sicher weiter bei dem Versuch, einen Compiler zu finden und damit den Code zu compilieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1824011</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824011</guid><dc:creator><![CDATA[pumuckl]]></dc:creator><pubDate>Thu, 17 Dec 2009 14:56:45 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 15:00:25 GMT]]></title><description><![CDATA[<p>Das Forum ist nicht da, damit jeder 2. kommt und meint mit &quot;Programmier mir mal bitte WoW nach. Diesmal aber kostenlos. Dauert doch nur 12Minuten und 43 Sekunden&quot;... Wir helfen wenn es Probleme gibt, aber auch meistens nur, wenn wir sehen das Eigeninitiative am Start ist. Ihr klatscht uns ein Codefetzen aus dem Internet in ein Thread und meint &quot;macht mal&quot;. Geht ein paar Mal Zeitung austragen und ihr habt Geld für einen Softwareentwickler...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1824013</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824013</guid><dc:creator><![CDATA[freaky]]></dc:creator><pubDate>Thu, 17 Dec 2009 15:00:25 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 15:04:39 GMT]]></title><description><![CDATA[<p><a href="http://www.softpedia.com/progScreenshots/DEV-C-Screenshot-51518.html" rel="nofollow">Guck mal hier.</a></p>
<p>Mhhhh.</p>
<p>Wird schon Josef, Kopf hoch...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1824015</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824015</guid><dc:creator><![CDATA[Fink]]></dc:creator><pubDate>Thu, 17 Dec 2009 15:04:39 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 15:17:06 GMT]]></title><description><![CDATA[<p>ok, dann hier der code den wir nehmen..Könnt ihr mir sagen warum denn nur schwarze screens bei rauskommen?</p>
<pre><code>QPixmap QPixmap::grabWindow(WId winId, int x, int y, int w, int h )
{
   RECT r;
   GetClientRect(winId, &amp;r);

   if (w &lt; 0) w = r.right - r.left;
   if (h &lt; 0) h = r.bottom - r.top;

#ifdef Q_OS_WINCE_WM
   if (qt_wince_is_pocket_pc()) {
       QWidget *widget = QWidget::find(winId);
       if (qobject_cast&lt;QDesktopWidget *&gt;(widget)) {
           RECT rect = {0,0,0,0};
           AdjustWindowRectEx(&amp;rect, WS_BORDER | WS_CAPTION, FALSE, 0);
           int magicNumber = qt_wince_is_high_dpi() ? 4 : 2;
           y += rect.top - magicNumber;
       }
   }
#endif

   // Create and setup bitmap
   HDC display_dc = GetDC;
   HDC bitmap_dc = CreateCompatibleDC(display_dc);
   HBITMAP bitmap = CreateCompatibleBitmap(display_dc, w, h);
   HGDIOBJ null_bitmap = SelectObject(bitmap_dc, bitmap);

   // copy data
   HDC window_dc = GetDC(winId);
   BitBlt(bitmap_dc, 0, 0, w, h, window_dc, x, y, SRCCOPY
#ifndef Q_OS_WINCE
                                   | CAPTUREBLT
#endif
           );

   // clean up all but bitmap
   ReleaseDC(winId, window_dc);
   SelectObject(bitmap_dc, null_bitmap);
   DeleteDC(bitmap_dc);

   QPixmap
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1824021</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824021</guid><dc:creator><![CDATA[Rene1981]]></dc:creator><pubDate>Thu, 17 Dec 2009 15:17:06 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 17:24:15 GMT]]></title><description><![CDATA[<p>Und warum musst du das nochmal posten?<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-256726.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-256726.html</a></p>
<p>Außerdem hab ich auch bei dem anderen Post nicht verstanden was ihr eigentlich treibt. Weil laut Code handelt es sich da um die QPixmap Klasse.<br />
Und zwar unmodifiziert um die original-nokia-Windows-Implementierung. Euer eigener Code ist das mit nichten, und warum du das hier postest und was du daran ändern willst frag ich mich auch...<br />
Versucht dich da jemand zu verarschen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1824088</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824088</guid><dc:creator><![CDATA[HMMMM&#x27;er]]></dc:creator><pubDate>Thu, 17 Dec 2009 17:24:15 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 18:39:09 GMT]]></title><description><![CDATA[<p>amokossi schrieb:</p>
<blockquote>
<p>Das ist ja das gute am Forum..Wenn man nett fragt, bekommt ma ab und an auch mal Hilfe. Leider hab ich nicht das Geld jemanden zu bezahlen. Das Tool soll ja auc nicht in Ligen oder ähnlichem verwendet werden. Jmd. anderes meinte den code + shortkey in nen programm zu bringen dauert ca 15 min. Nur leider hatte der keine Zeit...</p>
<p>Evtl. findet sich ja jmd.</p>
<p>vielen Dank</p>
</blockquote>
<p>Es bekommt jeder Hilfe, wer auch Eigeninitiative zeigt und was lernen will. Es ist auch weder Sinn, noch Aufgabe eines Forums (zumindest nicht dieses) für Lau etwas programmieren zu lassen. Hier geschieht alles aus goodwill und die meisten werden für Code bezahlt. Warum sollten wir also hier für andere Gratisch Sachen machen, wofür wir auch bezahlt werden können?</p>
<p>Wenn du etwas willst und das Geld nicht dazu hast, dann machst du das, wie bei allem anderne auch. Spar bis du das Geld hast und jemanden bezahlen kannst oder mach es selbst. Bei der zweiten Variante helfen wir dir auch, aber dafür musst du Initiative zeigen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1824113</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824113</guid><dc:creator><![CDATA[drakon]]></dc:creator><pubDate>Thu, 17 Dec 2009 18:39:09 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 19:21:47 GMT]]></title><description><![CDATA[<p>Ich hätte gerne ein Auto, habe aber das Geld nicht dazu. Kann mir jemand gerade mal eins geben? Es ist doch ausserdem bald Weihnachten und ich habe keine Lust so viele Zeitungen auszutragen, bis ich so viel Geld habe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1824134</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824134</guid><dc:creator><![CDATA[tntnet]]></dc:creator><pubDate>Thu, 17 Dec 2009 19:21:47 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Thu, 17 Dec 2009 19:26:36 GMT]]></title><description><![CDATA[<p>tntnet schrieb:</p>
<blockquote>
<p>Ich hätte gerne ein Auto, habe aber das Geld nicht dazu. Kann mir jemand gerade mal eins geben? Es ist doch ausserdem bald Weihnachten und ich habe keine Lust so viele Zeitungen auszutragen, bis ich so viel Geld habe.</p>
</blockquote>
<p>Genau auf das wollte ich hinaus. <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/1824138</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1824138</guid><dc:creator><![CDATA[drakon]]></dc:creator><pubDate>Thu, 17 Dec 2009 19:26:36 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Tue, 17 Aug 2010 09:32:30 GMT]]></title><description><![CDATA[<p>HDC screen = GetDC(0);<br />
HDC hdcMemory = CreateCompatibleDC(screen);<br />
BitBlt(hdc, 0, 0, maus2-&gt;x-maus1-&gt;x,maus2-&gt;y-maus1-&gt;y, screen, 0, 0, SRCCOPY);<br />
ist nen stück auf mein prog ^^<br />
screen ist nen &quot;screenshot&quot;<br />
ich denk mal so kann man das in deinem prog auch machen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1940881</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1940881</guid><dc:creator><![CDATA[forennutzer]]></dc:creator><pubDate>Tue, 17 Aug 2010 09:32:30 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Tue, 17 Aug 2010 09:57:00 GMT]]></title><description><![CDATA[<p>@Forennutzer: Ich denke mal net das der Typ noch Hilfe braucht. Ist ja schon ein Weilchen her <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/1940887</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1940887</guid><dc:creator><![CDATA[OldPost]]></dc:creator><pubDate>Tue, 17 Aug 2010 09:57:00 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Tue, 17 Aug 2010 10:06:07 GMT]]></title><description><![CDATA[<p>er vllt nicht aber andere, die ne sufu benutzen und hier landen schon XD</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1940893</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1940893</guid><dc:creator><![CDATA[forennutzer]]></dc:creator><pubDate>Tue, 17 Aug 2010 10:06:07 GMT</pubDate></item><item><title><![CDATA[Reply to Kann mir jmd. aus dem code nen Programm machen? on Tue, 17 Aug 2010 11:22:04 GMT]]></title><description><![CDATA[<p>Die BitBlt-Funktion hat ja der Threadersteller schon gepostet, aber bei Spielen basierend auf DirectX oder OpenGl wird das nichts nutzen - Stichwort: Backbuffer...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1940931</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1940931</guid><dc:creator><![CDATA[Th69]]></dc:creator><pubDate>Tue, 17 Aug 2010 11:22:04 GMT</pubDate></item></channel></rss>