<?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[Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein)]]></title><description><![CDATA[<p>Also ich schreib mal nen neuen thread(beim anderen blickt keiner mehr durch)</p>
<p>Ich möchte ein Logo auf ein Bild implentieren und der Sichbarkeitsgrad,des Logos, soll Stufenlos zu regeln sein.</p>
<p>Ich habe folgenden Source:</p>
<pre><code class="language-cpp">Boolean TForm::WaterMark(int Percent, double SizePercent)
{ int X,Y;
  Boolean Ready=false;
  double Zoom;
  TRect R;
  Boolean OnlyBright=Percent&lt;0;
  Graphics::TBitmap *Src=new Graphics::TBitmap();
  Src-&gt;PixelFormat=pf24bit;
  try
  {
    Src-&gt;LoadFromResourceName((int)HInstance,&quot;LOGO&quot;);
    Src-&gt;PixelFormat=pf24bit;
    R=Rect(0,0,Src-&gt;Width,Src-&gt;Height);
    Zoom=min(((double)Pic-&gt;Bitmap-&gt;Width / Src-&gt;Width),((double)Pic-&gt;Bitmap-&gt;Height / Src-&gt;Height)) * SizePercent;
    if (Zoom&gt;1)
    { Src-&gt;Width*=Zoom;
      Src-&gt;Height*=Zoom;
      Src-&gt;Canvas-&gt;CopyRect(Rect(0,0,Src-&gt;Width,Src-&gt;Height),Src-&gt;Canvas,R);
    }

    PRGBTriple DstLine, SrcLine;
    for (Y=0;Y&lt;Src-&gt;Height;Y++)
    {
      if (((Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2)&gt;0) &amp;&amp;
          ((Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2)&lt;Pic-&gt;Bitmap-&gt;Height))
      {
        SrcLine=(PRGBTriple)Src-&gt;ScanLine[Y];
        DstLine=(PRGBTriple)Pic-&gt;Bitmap-&gt;ScanLine[Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2];
        for (X=0;X&lt;Src-&gt;Width;X++)
        {
          if (((X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2)&gt;0) &amp;&amp;
              ((X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2)&lt;Pic-&gt;Bitmap-&gt;Width))
          {
            if ((SrcLine[X].rgbtRed + SrcLine[X].rgbtGreen + SrcLine[X].rgbtBlue)&gt;0)
            {
              if (Percent&gt;=0)
              {
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed=(SrcLine[X].rgbtRed * Percent) / 100 + (DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed * (100 - Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen=(SrcLine[X].rgbtGreen * Percent) / 100 + (DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen * (100 - Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue=(SrcLine[X].rgbtBlue * Percent) / 100 + (DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue * (100 - Percent)) / 100;
              }
              else
              {
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed=(DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed * (100 + Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen=(DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen * (100 + Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue=(DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue * (100 + Percent)) / 100;
              }
            }
          }
        }
      }
    }
    Ready=true;
  }
  catch(...)
  {
  }
  delete Src;
  return Ready;
}
</code></pre>
<p><strong>So ich bekomme immer die Fehlermeldung beim Linken, dass Bitmap kein member von TImage ist.</strong><br />
[C++ Error] Trans.cpp(98): E2316 'Bitmap' is not a member of 'TImage'</p>
<p>Und folgende meldung (wobei &quot;min&quot; in den ersten Zeilen des Source markiert wird):</p>
<p>[C++ Error] Trans.cpp(98): E2268 Call to undefined function 'min'</p>
<p>Ich weiß nicht was ich noch verändern muss damit mein Source klappt.<br />
Bis jetzt habe ich 2 TImages: Pic und Src(für das logo)</p>
<p>Wäre erfreut über eure Hilfe<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/136248/logo-auf-bild-implentieren-und-sourcecode-funktioniert-nicht-logo-soll-halbtransparent-sein</link><generator>RSS for Node</generator><lastBuildDate>Sat, 01 Aug 2026 18:55:28 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/136248.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Feb 2006 15:25:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 15:25:10 GMT]]></title><description><![CDATA[<p>Also ich schreib mal nen neuen thread(beim anderen blickt keiner mehr durch)</p>
<p>Ich möchte ein Logo auf ein Bild implentieren und der Sichbarkeitsgrad,des Logos, soll Stufenlos zu regeln sein.</p>
<p>Ich habe folgenden Source:</p>
<pre><code class="language-cpp">Boolean TForm::WaterMark(int Percent, double SizePercent)
{ int X,Y;
  Boolean Ready=false;
  double Zoom;
  TRect R;
  Boolean OnlyBright=Percent&lt;0;
  Graphics::TBitmap *Src=new Graphics::TBitmap();
  Src-&gt;PixelFormat=pf24bit;
  try
  {
    Src-&gt;LoadFromResourceName((int)HInstance,&quot;LOGO&quot;);
    Src-&gt;PixelFormat=pf24bit;
    R=Rect(0,0,Src-&gt;Width,Src-&gt;Height);
    Zoom=min(((double)Pic-&gt;Bitmap-&gt;Width / Src-&gt;Width),((double)Pic-&gt;Bitmap-&gt;Height / Src-&gt;Height)) * SizePercent;
    if (Zoom&gt;1)
    { Src-&gt;Width*=Zoom;
      Src-&gt;Height*=Zoom;
      Src-&gt;Canvas-&gt;CopyRect(Rect(0,0,Src-&gt;Width,Src-&gt;Height),Src-&gt;Canvas,R);
    }

    PRGBTriple DstLine, SrcLine;
    for (Y=0;Y&lt;Src-&gt;Height;Y++)
    {
      if (((Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2)&gt;0) &amp;&amp;
          ((Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2)&lt;Pic-&gt;Bitmap-&gt;Height))
      {
        SrcLine=(PRGBTriple)Src-&gt;ScanLine[Y];
        DstLine=(PRGBTriple)Pic-&gt;Bitmap-&gt;ScanLine[Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2];
        for (X=0;X&lt;Src-&gt;Width;X++)
        {
          if (((X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2)&gt;0) &amp;&amp;
              ((X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2)&lt;Pic-&gt;Bitmap-&gt;Width))
          {
            if ((SrcLine[X].rgbtRed + SrcLine[X].rgbtGreen + SrcLine[X].rgbtBlue)&gt;0)
            {
              if (Percent&gt;=0)
              {
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed=(SrcLine[X].rgbtRed * Percent) / 100 + (DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed * (100 - Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen=(SrcLine[X].rgbtGreen * Percent) / 100 + (DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen * (100 - Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue=(SrcLine[X].rgbtBlue * Percent) / 100 + (DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue * (100 - Percent)) / 100;
              }
              else
              {
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed=(DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtRed * (100 + Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen=(DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtGreen * (100 + Percent)) / 100;
                DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue=(DstLine[X + (Pic-&gt;Bitmap-&gt;Width - Src-&gt;Width) / 2].rgbtBlue * (100 + Percent)) / 100;
              }
            }
          }
        }
      }
    }
    Ready=true;
  }
  catch(...)
  {
  }
  delete Src;
  return Ready;
}
</code></pre>
<p><strong>So ich bekomme immer die Fehlermeldung beim Linken, dass Bitmap kein member von TImage ist.</strong><br />
[C++ Error] Trans.cpp(98): E2316 'Bitmap' is not a member of 'TImage'</p>
<p>Und folgende meldung (wobei &quot;min&quot; in den ersten Zeilen des Source markiert wird):</p>
<p>[C++ Error] Trans.cpp(98): E2268 Call to undefined function 'min'</p>
<p>Ich weiß nicht was ich noch verändern muss damit mein Source klappt.<br />
Bis jetzt habe ich 2 TImages: Pic und Src(für das logo)</p>
<p>Wäre erfreut über eure Hilfe<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989420</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989420</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Wed, 08 Feb 2006 15:25:10 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 15:42:00 GMT]]></title><description><![CDATA[<p>Maxmann schrieb:</p>
<blockquote>
<p>Also ich schreib mal nen neuen thread(beim anderen blickt keiner mehr durch)</p>
<p><strong>So ich bekomme immer die Fehlermeldung beim Linken, dass Bitmap kein member von TImage ist.</strong><br />
[C++ Error] Trans.cpp(98): E2316 'Bitmap' is not a member of 'TImage'</p>
</blockquote>
<p>Image1-&gt;Picture-&gt;Bitmap</p>
<p>Wo ist aber in Deinem Source ein Image?</p>
<p>min - Problem:</p>
<p>laut Hilfe #define min(a, b) (((a) &lt; (b)) ? (a) : (b))</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989431</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989431</guid><dc:creator><![CDATA[Rostfrei**]]></dc:creator><pubDate>Wed, 08 Feb 2006 15:42:00 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 15:42:11 GMT]]></title><description><![CDATA[<p>Ich dachte &quot;Pic&quot; wäre mein TImage. Ich habe auf jeden Fall ein TImage namens &quot;Pic&quot; erstellt.<br />
mfg maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989441</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989441</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Wed, 08 Feb 2006 15:42:11 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 15:53:21 GMT]]></title><description><![CDATA[<p>Maxmann schrieb:</p>
<blockquote>
<p>Ich dachte &quot;Pic&quot; wäre mein TImage. Ich habe auf jeden Fall ein TImage namens &quot;Pic&quot; erstellt.<br />
mfg maxmann</p>
</blockquote>
<p>Ich habe keine Ahnhung, was nun Dein Image ist. Für den Fall, dass es Pic heisst, musst Du eben Pic-&gt;Picture-&gt;Bitmap-&gt;... schreiben.</p>
<p>Gruss</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989452</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989452</guid><dc:creator><![CDATA[Rostfrei**]]></dc:creator><pubDate>Wed, 08 Feb 2006 15:53:21 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 16:01:53 GMT]]></title><description><![CDATA[<p>auschnitt au meinem source</p>
<pre><code class="language-cpp">PRGBTriple DstLine, SrcLine;
    for (Y=0;Y&lt;Src-&gt;Height;Y++)
    {
      if (((Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2)&gt;0) &amp;&amp;
          ((Y + (Pic-&gt;Bitmap-&gt;Height - Src-&gt;Height) / 2)&lt;Pic-&gt;Bitmap-&gt;Height))
</code></pre>
<p>ich benutze doch bereits pic in meinem source oder was willst du mir sagen?<br />
mfg maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989462</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989462</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Wed, 08 Feb 2006 16:01:53 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 16:07:24 GMT]]></title><description><![CDATA[<p>Rostfrei[] schrieb:</p>
<blockquote>
<p>Ich habe keine Ahnhung, was nun Dein Image ist. Für den Fall, dass es Pic heisst, musst Du eben Pic-&gt;**Picture-&gt;**Bitmap-&gt;... schreiben.</p>
</blockquote>
<p>...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989466</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989466</guid><dc:creator><![CDATA[BigNeal]]></dc:creator><pubDate>Wed, 08 Feb 2006 16:07:24 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 17:27:10 GMT]]></title><description><![CDATA[<p>Wenn es nicht so traurig wäre......</p>
<p>sorry, aber wie oft soll es nun noch hingeschrieben werden, bis du es liest??</p>
<p>Zoom=min(((double)Pic-&gt;Bitmap-&gt;Width -&gt; geht nicht, weil Pic ein TImage ist und das, wie der Compiler sagt keine Eigenschaft Bitmap hat.</p>
<p>Zoom=min(((double)Pic-&gt;Picture-&gt;Bitmap-&gt;Width -&gt; geht eher, weil Picture eine Eingeschaft von TImage ist und diese wiederum hat die Eigenschaft Bitmap</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989548</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989548</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Wed, 08 Feb 2006 17:27:10 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 17:40:58 GMT]]></title><description><![CDATA[<p>Und ihr musstet 30 Einträge schreiben um mir das klar zu machen? Sorry war bisl schwer von Verstand aber so is das bei mir net rübergekommen, vorallem weil ich dachte, dass der Source so in Ordnung is und ich nur noch was deklarieren muss danke demnoch an alle.<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989563</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989563</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Wed, 08 Feb 2006 17:40:58 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Wed, 08 Feb 2006 17:54:57 GMT]]></title><description><![CDATA[<blockquote>
<p>Und ihr musstet 30 Einträge schreiben um mir das klar zu machen? Sorry war bisl schwer von Verstand aber so is das bei mir net rübergekommen,</p>
</blockquote>
<p>Ja, mit dem lesen eines Textes ist da so manchmal ein Sache...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/989578</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/989578</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Wed, 08 Feb 2006 17:54:57 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Fri, 10 Feb 2006 16:36:20 GMT]]></title><description><![CDATA[<p>Maxmann schrieb:</p>
<blockquote>
<p>Und ihr musstet 30 Einträge schreiben um mir das klar zu machen?<br />
.<br />
.<br />
.<br />
vorallem weil ich dachte, dass der Source so in Ordnung is und ich nur noch was deklarieren muss danke demnoch an alle.<br />
mfg Maxmann</p>
</blockquote>
<p>Ja, wer lesen kann ist echt im Vorteil. <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="🙂"
    /> <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="🙂"
    /> <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>
<p>Siehe meinen Beitrag mit dem Code:</p>
<p>DerAltenburger schrieb:</p>
<blockquote>
<p>Pic ist das zu bearbeitende Zielbild in einem <strong>TPicture</strong> Member von Form</p>
</blockquote>
<p>Aber mach Dir nichts draus. Viele lesen nicht alles genau. Wichtig ist das Ergebnis<br />
MfG<br />
DerAltenburger</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991049</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991049</guid><dc:creator><![CDATA[DerAltenburger]]></dc:creator><pubDate>Fri, 10 Feb 2006 16:36:20 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Sat, 11 Feb 2006 14:58:52 GMT]]></title><description><![CDATA[<p>DerAltenburger schrieb:</p>
<blockquote>
<p>Aber mach Dir nichts draus. Viele lesen nicht alles genau. Wichtig ist das Ergebnis</p>
</blockquote>
<p>Also an dieser Stelle möchte ich Dir widersprechen. Die Lösung hat bereits 3 Mal im Klartext im ersten Thread zu diesem Thema gestanden. Und da er diesen Thread ebenfalls begonnen hat, hätte er schon etwas geanuer lesen müßen...</p>
<p>Just my 2 cents...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991616</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:58:52 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Sat, 11 Feb 2006 15:23:35 GMT]]></title><description><![CDATA[<p>Weiterhin sollte er als Autor eigentlich am besten wissen, ob er ein TImage oder TBitmap deklariert hat.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991630</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991630</guid><dc:creator><![CDATA[Rostfrei**]]></dc:creator><pubDate>Sat, 11 Feb 2006 15:23:35 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Sat, 11 Feb 2006 15:38:45 GMT]]></title><description><![CDATA[<p>Er war ja nicht der Autor -&gt; ihm wurde eine Routine gegeben, die mit Bitmap anstatt - wie benötigt - mit TImage arbeitet.</p>
<p>Jedoch wurde der daraus entstandene Fehler ausführlich &quot;besprochen&quot;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991639</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991639</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 15:38:45 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Sat, 11 Feb 2006 22:35:33 GMT]]></title><description><![CDATA[<p>Erstma danke ich euch, dann tut es mir leid , dass ich nicht direkt verstanden hab und könntet ihr/du mir noch sagen wie ich das Logo einbinde??<br />
Ich glaub ich muss eine .rc datei dafür schreiben oda? aber was schreibe ich nun rein??<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991929</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991929</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Sat, 11 Feb 2006 22:35:33 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Sun, 12 Feb 2006 06:54:40 GMT]]></title><description><![CDATA[<p><a href="http://www.marquardtnet.info/cecke/tutorials.8/8_dll.html" rel="nofollow">http://www.marquardtnet.info/cecke/tutorials.8/8_dll.html</a></p>
<p>Steht ganz unten zum Thema JPG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991994</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991994</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sun, 12 Feb 2006 06:54:40 GMT</pubDate></item><item><title><![CDATA[Reply to Logo auf Bild implentieren und Sourcecode funktioniert nicht (Logo soll halbtransparent sein) on Sun, 12 Feb 2006 20:44:44 GMT]]></title><description><![CDATA[<p>Maxmann schrieb:</p>
<blockquote>
<p>Erstma danke ich euch, dann tut es mir leid , dass ich nicht direkt verstanden hab und könntet ihr/du mir noch sagen wie ich das Logo einbinde??<br />
Ich glaub ich muss eine .rc datei dafür schreiben oda? aber was schreibe ich nun rein??<br />
mfg Maxmann</p>
</blockquote>
<p>Oder Du machst in die Form ein unsichtbares TImage und fügst das Bild im Objektinspektor da ein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/992645</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/992645</guid><dc:creator><![CDATA[DerAltenburger]]></dc:creator><pubDate>Sun, 12 Feb 2006 20:44:44 GMT</pubDate></item></channel></rss>