<?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[Problem mit Konstruktor von TImage]]></title><description><![CDATA[<p>Hi!<br />
Ich hab ein Problem: Immer wenn ich versuche zur Laufzeit ein TImage zu erzeugen ernte ich folgende Fehlermeldung:</p>
<pre><code class="language-cpp">TImage* Image;
   Image=new TImage;
</code></pre>
<p>Colud not find a match for: 'Extctrls::TImage::TImage()'.</p>
<p>Was mache ich falsch und wie mach ich's richtig?<br />
mfg<br />
chris90</p>
<p>PS: Hab im FAQ nix gefunden.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/76025/problem-mit-konstruktor-von-timage</link><generator>RSS for Node</generator><lastBuildDate>Sun, 28 Jun 2026 19:55:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/76025.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 07 Jun 2004 08:56:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem mit Konstruktor von TImage on Mon, 07 Jun 2004 08:56:12 GMT]]></title><description><![CDATA[<p>Hi!<br />
Ich hab ein Problem: Immer wenn ich versuche zur Laufzeit ein TImage zu erzeugen ernte ich folgende Fehlermeldung:</p>
<pre><code class="language-cpp">TImage* Image;
   Image=new TImage;
</code></pre>
<p>Colud not find a match for: 'Extctrls::TImage::TImage()'.</p>
<p>Was mache ich falsch und wie mach ich's richtig?<br />
mfg<br />
chris90</p>
<p>PS: Hab im FAQ nix gefunden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/534847</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/534847</guid><dc:creator><![CDATA[chris90]]></dc:creator><pubDate>Mon, 07 Jun 2004 08:56:12 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Konstruktor von TImage on Mon, 07 Jun 2004 09:13:05 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">Image = new TImage(NULL);
// oder
Image = new TImage(&lt;AOwner&gt;);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/534855</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/534855</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 07 Jun 2004 09:13:05 GMT</pubDate></item></channel></rss>