<?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[Bildausschnitt eines BIldes in ein anderes Übertragen]]></title><description><![CDATA[<p>Hi,</p>
<p>gleich noch ein Problem!</p>
<p>Ich habe 2 TImage's.<br />
Bild1 beinhaltet ein Bild (zB 640x480).</p>
<p>Jetzt will ich wärend der Laufzeit ein teil davon in ein 2. Bild speichern.</p>
<p>Meinetwegen von 50,50-100,100.</p>
<p>Mein Herrangehen war so geplant:</p>
<pre><code>TRect rectSource,rectDest;
rectSource.Left=50;
rectSource.top=50;
rectSource.Buttom=100;   //oder muss ich hier die weite angeben?? also 50
rectSource.Right=100;
rectDest=Rect(0,0,100,100);
Bild2-&gt;Picture-&gt;Bitmap=NULL;
BIld2-&gt;Width=100;
BIld2-&gt;Height=100;
Bild1-&gt;Canvas-&gt;Rectangle(0,0,640,480);
Bild2-&gt;Canvas-&gt;CopyRect(rectDest,Bild1-&gt;Canvas,rectSource);
</code></pre>
<p>leider kommt da immer ein Speicherzugriffsfehler! ??<br />
WIe kann ich den umgehen, oder was mach ich falsch??</p>
<p>MfG Puccini</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/193899/bildausschnitt-eines-bildes-in-ein-anderes-übertragen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 03:57:08 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/193899.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 01 Oct 2007 13:16:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 13:16:58 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>gleich noch ein Problem!</p>
<p>Ich habe 2 TImage's.<br />
Bild1 beinhaltet ein Bild (zB 640x480).</p>
<p>Jetzt will ich wärend der Laufzeit ein teil davon in ein 2. Bild speichern.</p>
<p>Meinetwegen von 50,50-100,100.</p>
<p>Mein Herrangehen war so geplant:</p>
<pre><code>TRect rectSource,rectDest;
rectSource.Left=50;
rectSource.top=50;
rectSource.Buttom=100;   //oder muss ich hier die weite angeben?? also 50
rectSource.Right=100;
rectDest=Rect(0,0,100,100);
Bild2-&gt;Picture-&gt;Bitmap=NULL;
BIld2-&gt;Width=100;
BIld2-&gt;Height=100;
Bild1-&gt;Canvas-&gt;Rectangle(0,0,640,480);
Bild2-&gt;Canvas-&gt;CopyRect(rectDest,Bild1-&gt;Canvas,rectSource);
</code></pre>
<p>leider kommt da immer ein Speicherzugriffsfehler! ??<br />
WIe kann ich den umgehen, oder was mach ich falsch??</p>
<p>MfG Puccini</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1375969</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1375969</guid><dc:creator><![CDATA[Puccini]]></dc:creator><pubDate>Mon, 01 Oct 2007 13:16:58 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 13:23:52 GMT]]></title><description><![CDATA[<p>Das hatten wir doch vor ein paar Tagen erst: <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-193418.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-193418.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1375976</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1375976</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 01 Oct 2007 13:23:52 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 13:40:11 GMT]]></title><description><![CDATA[<p>Hab ich doch auch alles so wie in diesem Thread!</p>
<p>Trotzdem gehts bei mir net....<br />
Kommt immer halt der Speicherfehler!</p>
<p>Keiner ne idee?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1375987</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1375987</guid><dc:creator><![CDATA[Puccini]]></dc:creator><pubDate>Mon, 01 Oct 2007 13:40:11 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 13:48:43 GMT]]></title><description><![CDATA[<p>Wozu ist das denn hier gut?</p>
<pre><code class="language-cpp">Bild2-&gt;Picture-&gt;Bitmap=NULL;
</code></pre>
<p>Lass das bitte mal weg.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1375991</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1375991</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Mon, 01 Oct 2007 13:48:43 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 13:57:20 GMT]]></title><description><![CDATA[<p>Das hab ich shcon rauskommentiert...</p>
<p>jetzt sieht mein testcode so aus:</p>
<pre><code>TRect rectSource,rectDest;
rectSource=Rect(0,0,100,100);
rectDest=Rect(0,0,100,100);
Bild2-&gt;Canvas-&gt;CopyRect(rectDest,Bild1-&gt;Canvas,rectSource);
</code></pre>
<p>Kommt immernoch fehler!<br />
Muss ich noch irgendwas vorher mit Bild2 und Bild1 veranstallten?<br />
Bild 1 is ein TImage was ich auf die Form gezogen habe und ein BIld hinterlegt habe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1375998</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1375998</guid><dc:creator><![CDATA[Puccini]]></dc:creator><pubDate>Mon, 01 Oct 2007 13:57:20 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 15:35:15 GMT]]></title><description><![CDATA[<p>Geh doch bitte mal mit dem debugger durch und schau nach wo und warum genau der Fehler passiert.<br />
Was ist denn Bild2?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376078</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376078</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Mon, 01 Oct 2007 15:35:15 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Mon, 01 Oct 2007 19:20:07 GMT]]></title><description><![CDATA[<p>Ist das Bild wirklich ein Bild oder ist es ein Metafile ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376177</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376177</guid><dc:creator><![CDATA[VergissEs]]></dc:creator><pubDate>Mon, 01 Oct 2007 19:20:07 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Tue, 02 Oct 2007 07:21:25 GMT]]></title><description><![CDATA[<p>Also Bild 1 sowie Bild2 sind TImages.</p>
<p>TImage *Bild1;<br />
TImage *Bild2;</p>
<p>Das Bild1 hab ich im Builder einfach so auf die Form gezogen und dann wird beim Starten der Form ein Bild geladen und Bild1 zugewissen:</p>
<pre><code>Graphics::TPicture *tempBild=new Graphics::TPicture();
tempBild-&gt;LoadFromFile(&quot;MeinBild.jpg&quot;);
Bild1-&gt;Picture=tempBild;
</code></pre>
<p>So hab ich einen tollen hintergrund...<br />
Jetzt wollt ich aber gern davon einen Ausschnitt vergrößert darstellen lassen...<br />
dazu muss ich diesen ausschnitt in ein 2. Bild zwischenspeichern.</p>
<p>Der Debugger hat niergends angehalten bei dem fehler.. es kommt immer:</p>
<pre><code>Access violation at address 00477461 in module 'Projekt.exe'. Read of address 00000004C.
</code></pre>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>EDIT:</p>
<p>Fehler kommt keiner mehr! Es lag daran das ich oben net Bild2=new TImage(this); geschrieben habe!<br />
Da ich aber Bild1 so auf die Form gezogen habe gabs das nich und ich dachte es geht so <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
<p>Also, fehler keiner mehr, aber auch kein Bild! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /><br />
Wo is das hin wenn ich das Kopiere??</p>
<pre><code>rectAusschnitt=Rect(0,0,100,100);
rectSource=Rect(150,150,250,250);
Bild2-&gt;Width=100;
Bild2-&gt;Height=100;
Bild2-&gt;Picture-&gt;Bitmap-&gt;Canvas-&gt;CopyRect(rectAusschnitt,Bild1-&gt;Picture-&gt;Bitmap-&gt;Canvas,rectSource);
Form2=new TForm(this)
Bild2-&gt;Parent=Form2;
</code></pre>
<p>Sollte doch gehen oder?<br />
Die Form2 wird natürlichnoch in dergröße geändert und auf visible und so gesetzt...<br />
die sehe ich ja auch, nur nich das bild! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /></p>
<p>komisch? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376281</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376281</guid><dc:creator><![CDATA[Puccini]]></dc:creator><pubDate>Tue, 02 Oct 2007 07:21:25 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Tue, 02 Oct 2007 15:08:33 GMT]]></title><description><![CDATA[<p>Komponenten zu einem anderen Formular schicken geht glaub ich nicht..</p>
<p>Dein Bild2 muss sich schon auf Form2 befinden, und dann so weiter:</p>
<pre><code class="language-cpp">[code]

// in form1.cpp : #include form2.h
// in form2.cpp : #include form1.h
.
.
rectAusschnitt=Rect(0,0,100,100);
rectSource=Rect(150,150,250,250);
Form2=new TForm(this);
Form2-&gt;ShowModal();
Form2-&gt;Bild2-&gt;Width=100;
Form2-&gt;Bild2-&gt;Height=100;
Form2-&gt;Bild2-&gt;Picture-&gt;Bitmap-&gt;Canvas-&gt;CopyRect(rectAusschnitt,Bild1-&gt;Picture-&gt;Bitmap-&gt;Canvas,rectSource);
.
.
delete Form2;

[/code]
</code></pre>
<p>MfG<br />
kpeter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1376680</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1376680</guid><dc:creator><![CDATA[kpeter]]></dc:creator><pubDate>Tue, 02 Oct 2007 15:08:33 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Thu, 04 Oct 2007 07:50:49 GMT]]></title><description><![CDATA[<p>hmm<br />
also das scheint genausowenig zu gehen -.-</p>
<p>is immer noch leer das bild!</p>
<p>verdammt... wie soll ichs denn noch machen!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1377585</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1377585</guid><dc:creator><![CDATA[Puccini]]></dc:creator><pubDate>Thu, 04 Oct 2007 07:50:49 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Thu, 04 Oct 2007 12:37:39 GMT]]></title><description><![CDATA[<p>Wir werden dich mal erlösen, ich poste mal alle 4 Dateien,<br />
dann siehst du auch, welche Kompo's wo sind.</p>
<p>Form1 Header:</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#ifndef mainH
#define mainH
//---------------------------------------------------------------------------
#include &lt;Classes.hpp&gt;
#include &lt;Controls.hpp&gt;
#include &lt;StdCtrls.hpp&gt;
#include &lt;Forms.hpp&gt;
#include &lt;ExtCtrls.hpp&gt;
#include &lt;jpeg.hpp&gt;
#include &lt;Buttons.hpp&gt;
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// Von der IDE verwaltete Komponenten
   TImage *Bild1;
   TSpeedButton *sbShowForm2;
   TSpeedButton *sbLoadImage;
   TSpeedButton *sbCopyRect;
   void __fastcall sbShowForm2Click(TObject *Sender);
   void __fastcall sbLoadImageClick(TObject *Sender);
   void __fastcall sbCopyRectClick(TObject *Sender);
   void __fastcall FormCreate(TObject *Sender);

private:

public:

   TRect rectSource, rectDest;
   __fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
</code></pre>
<p>Form1 cpp:</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#include &lt;vcl.h&gt;
#pragma hdrstop

#include &quot;main.h&quot;
#include &quot;frm2.h&quot;
#include &quot;jpeg.hpp&quot;  // &lt;=== beachte!
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
    : TForm(Owner)
{
}
//---------------------------------------------------------------------------

void __fastcall TForm1::sbShowForm2Click(TObject *Sender)
{
   Form2-&gt;Show();   // beachte !
}
//---------------------------------------------------------------------------

void __fastcall TForm1::sbLoadImageClick(TObject *Sender)
{
   TJPEGImage *jpegBild = new TJPEGImage();
   try {
      jpegBild-&gt;LoadFromFile(&quot;MeinBild.jpg&quot;);
      Bild1-&gt;Picture-&gt;Bitmap-&gt;Assign(jpegBild);
   }
   __finally {
      delete jpegBild;
   }
}
//---------------------------------------------------------------------------

void __fastcall TForm1::sbCopyRectClick(TObject *Sender)
{
   Form2-&gt;Bild2-&gt;Canvas-&gt;CopyRect(Form2-&gt;rectDest,               // wohin copy
                                  Bild1-&gt;Picture-&gt;Bitmap-&gt;Canvas,// woher
                                  rectSource);                   // rect von woher
}
//---------------------------------------------------------------------------

void __fastcall TForm1::FormCreate(TObject *Sender)
{
   rectDest   = Rect (0,   0, 100, 100);
   rectSource = Rect (50, 50, 100, 100);        
}
//---------------------------------------------------------------------------
</code></pre>
<p>Form2 Header:</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#ifndef frm2H
#define frm2H
//---------------------------------------------------------------------------
#include &lt;Classes.hpp&gt;
#include &lt;Controls.hpp&gt;
#include &lt;StdCtrls.hpp&gt;
#include &lt;Forms.hpp&gt;
#include &lt;Buttons.hpp&gt;
#include &lt;ExtCtrls.hpp&gt;
#include &quot;jpeg.hpp&quot;
//---------------------------------------------------------------------------
class TForm2 : public TForm
{
__published:	// Von der IDE verwaltete Komponenten
   TImage *Bild2;         // the big target ;)
   TBitBtn *BitBtn1;      // schliessen-button
   void __fastcall FormCreate(TObject *Sender);
private:
public:

   TRect rectDest;
   __fastcall TForm2(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm2 *Form2;
//---------------------------------------------------------------------------
#endif
</code></pre>
<p>Form2 cpp:</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#include &lt;vcl.h&gt;
#pragma hdrstop

#include &quot;frm2.h&quot;
#include &quot;main.h&quot;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm2 *Form2;
//---------------------------------------------------------------------------
__fastcall TForm2::TForm2(TComponent* Owner)
        : TForm(Owner)
{
}
//---------------------------------------------------------------------------

void __fastcall TForm2::FormCreate(TObject *Sender)
{
   rectDest = Form1-&gt;rectDest;
}
//---------------------------------------------------------------------------
</code></pre>
<p>Vielleicht spielst du den Fall vorher in einem neuen Projekt durch, da hast du den Kopf frei zum Experimentieren.</p>
<p>Der Code ist echt simpel.</p>
<p>Denk dran, dass du die Grösse der zu ladenden Grafiken<br />
vorher prüfst (falls du andere als dein bekanntes MeinBild nimmst.<br />
Naja, gibt ev. einen neuen Thread <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>
<p>War ein joke!!</p>
<p>MfG<br />
kpeter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1377842</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1377842</guid><dc:creator><![CDATA[kpeter]]></dc:creator><pubDate>Thu, 04 Oct 2007 12:37:39 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Fri, 05 Oct 2007 06:21:37 GMT]]></title><description><![CDATA[<p>danke für den Tip!</p>
<p>Also ich hatte alle deine Hinweise schon drin, aber es ging halt nich!<br />
Dann hab ich einfahc nochmal alles was damit zu tun hatte gelöscht, neu geschrieben und tada es ging ^^ <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /><br />
wer weis wo ich da was vertippt hatte...</p>
<p>in form2 hab ich bei deactivet noch eingenommen: delete Form2;<br />
und bei Form1 wenn man auf den Button drückt soll eine neue FOrm2 erstellt werden, da nur so das immage immer den akutellen hintergrund erhalten hat...</p>
<p>THX nochmal!</p>
<p>Gibt es jetzt auch noch die möglichkeit den aussschnit in form2 zu vergrößern? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /></p>
<p>Edit:<br />
habs shcon gefunden ^^<br />
erst auf den canvas malen mit copy rect.<br />
dann stretch auf true<br />
und dann die neue größe des bildes mit width und height bestimmen!<br />
oder?? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> <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/1378278</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1378278</guid><dc:creator><![CDATA[Puccini]]></dc:creator><pubDate>Fri, 05 Oct 2007 06:21:37 GMT</pubDate></item><item><title><![CDATA[Reply to Bildausschnitt eines BIldes in ein anderes Übertragen on Fri, 05 Oct 2007 10:06:21 GMT]]></title><description><![CDATA[<p>Das musst du nun selbst herausfinden. &quot;Learning by doing&quot;...</p>
<p>Im übrigen hab ich nicht gesagt, dass der Code komplett ist.</p>
<p>Sei mit dem Löschen des Form2 vorsichtig.<br />
Wenn es in den Projektoptionen unter &quot;automatisch erstellte Formulare&quot; ist, wird es zum Programmende von der Applikation gelöscht.<br />
Bei Aufruf Form2-&gt;Show() kann man mit Form2-&gt;Hide() das Form schliessen (verstecken).<br />
Es bleibt aber im Speicher und ist sofort wieder verfügbar.</p>
<p>EDIT: Im Ereignis OnShow von Form2 :</p>
<pre><code class="language-cpp">Form2-&gt;Refresh();   // oder Form2-&gt;Repaint();
</code></pre>
<p>Und zu den Schreibfehler kann ich nur sagen, dass die Borland-IDE einen Debugger hat, das Forum hier leider nicht. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
<p>Na viel Spass.</p>
<p>MfG<br />
kpeter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1378390</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1378390</guid><dc:creator><![CDATA[kpeter]]></dc:creator><pubDate>Fri, 05 Oct 2007 10:06:21 GMT</pubDate></item></channel></rss>