<?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[Object an Cursor heften]]></title><description><![CDATA[<p>Hallo<br />
ich würde gern ein Object zb ein TImage an meinen Cursor heften, solange der Cursor über meiner form ist.<br />
also mit dran heften meine ich vll so 20 pxl unterhalb des Cursors hinterher laufen.<br />
ich habs schon mit einem timer gemacht.<br />
es tut! ist aber nicht wirklich gut.<br />
vll habt ihr ne gute idee<br />
gruß ky</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/187562/object-an-cursor-heften</link><generator>RSS for Node</generator><lastBuildDate>Sun, 16 Aug 2026 20:33:01 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/187562.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 20 Jul 2007 23:45:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Object an Cursor heften on Fri, 20 Jul 2007 23:45:55 GMT]]></title><description><![CDATA[<p>Hallo<br />
ich würde gern ein Object zb ein TImage an meinen Cursor heften, solange der Cursor über meiner form ist.<br />
also mit dran heften meine ich vll so 20 pxl unterhalb des Cursors hinterher laufen.<br />
ich habs schon mit einem timer gemacht.<br />
es tut! ist aber nicht wirklich gut.<br />
vll habt ihr ne gute idee<br />
gruß ky</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329570</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329570</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Fri, 20 Jul 2007 23:45:55 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 10:22:43 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>mach bei deinem TForm bei OnMouseMove zum Beispiel sowas:</p>
<pre><code class="language-cpp">void __fastcall TForm1::FormMouseMove(TObject *Sender, TShiftState Shift, int X,
	int Y)
{
 Image1-&gt;Left = X + 10;
 Image1-&gt;Top = Y + 10;
}
</code></pre>
<p>Und damit, wenn der Cursor unten rechts ist, das Bild nicht außerhalb deines Forms kommt, vielleicht auch sowas:</p>
<pre><code class="language-cpp">void __fastcall TForm1::FormMouseMove(TObject *Sender, TShiftState Shift, int X,
	int Y)
{
 Image1-&gt;Left = min(ClientWidth - Image1-&gt;Width,X + 10);
 Image1-&gt;Top = min(ClientHeight - Image1-&gt;Height,Y + 10);
}
</code></pre>
<p>mfg<br />
Jakel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329659</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329659</guid><dc:creator><![CDATA[Jakel]]></dc:creator><pubDate>Sat, 21 Jul 2007 10:22:43 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 13:06:22 GMT]]></title><description><![CDATA[<p>gute idee!<br />
aber leider ist meine form an manchen stellen durchsichtig und da wird kein OnMouseMove Ereignis ausgelöst!<br />
hast du noch ne andere idee?<br />
Gruß Ky und Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329732</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329732</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Sat, 21 Jul 2007 13:06:22 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 13:53:34 GMT]]></title><description><![CDATA[<p>Was meinst du mit durchsichtig?</p>
<p>mfg<br />
Jakel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329783</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329783</guid><dc:creator><![CDATA[Jakel]]></dc:creator><pubDate>Sat, 21 Jul 2007 13:53:34 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 13:58:56 GMT]]></title><description><![CDATA[<p>an einigen stellen sieht man den desktop oder das darunterliegende fenster!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329790</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329790</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Sat, 21 Jul 2007 13:58:56 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 14:01:24 GMT]]></title><description><![CDATA[<p>Wie macht man denn sowas? *interressiert sei*</p>
<p>mfg<br />
Jakel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329793</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329793</guid><dc:creator><![CDATA[Jakel]]></dc:creator><pubDate>Sat, 21 Jul 2007 14:01:24 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 14:04:12 GMT]]></title><description><![CDATA[<p>einfach mit ner transparenten farbe des prob daran ist das halt dann die form auf kein event mehr reagiert!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329797</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329797</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Sat, 21 Jul 2007 14:04:12 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 14:05:54 GMT]]></title><description><![CDATA[<p>Wie genau macht man das denn das da eine transparente Farbe ist und was ist eine transparente Farbe?</p>
<p>mfg<br />
Jakel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329800</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329800</guid><dc:creator><![CDATA[Jakel]]></dc:creator><pubDate>Sat, 21 Jul 2007 14:05:54 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 14:36:26 GMT]]></title><description><![CDATA[<p>eigentlich wollte ich hilfe <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="😉"
    /><br />
du kannst die transparente farbe in den eigenschaften deiner form einstellen und aktivieren!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329812</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329812</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Sat, 21 Jul 2007 14:36:26 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 14:40:03 GMT]]></title><description><![CDATA[<p>Aber wenn ich weiß wie das Transparentmachen funktioniert weiß ich vielleicht auch wie man das Bild auch da mitkommen lassen kann.<br />
Weiß ich aber nich^^</p>
<p>mfg<br />
Jakel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1329814</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329814</guid><dc:creator><![CDATA[Jakel]]></dc:creator><pubDate>Sat, 21 Jul 2007 14:40:03 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sat, 21 Jul 2007 18:18:53 GMT]]></title><description><![CDATA[<pre><code>Form1-&gt;TransparentColorValue=clFuchsia;
  Form1-&gt;TransparentColor=true;
</code></pre>
<p>Die Borland Hilfe sagt dazu:</p>
<blockquote>
<p>Die Eigenschaft TransparentColor gibt an, ob eine Farbe des Formulars transparent angezeigt wird.</p>
<p>__property bool TransparentColor = {read=FTransparentColor, write=SetTransparentColor, nodefault};</p>
<p>Beschreibung</p>
<p>Mit TransparentColor können Sie angeben, daß eine der Farben des Formulars als transparente Farbe verarbeitet werden soll, Fenster hinter dem Formular also vollständig durchscheinen sollen. Die Eigenschaft TransparentColorValue gibt die transparente Farbe an.</p>
<p>Hinweis: Soll das gesamte Formular transparent oder durchscheinend sein, verwenden Sie die Eigenschaften AlphaBlend und AlphaBlendValue.<br />
Hinweis: TransparentColor funktioniert nicht auf allen Systemen. Die Anwendung muß unter Windows 2000 oder höher laufen, und der Computer muß über die erforderliche Hardwareausstattung verfügen.</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/1329923</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1329923</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Sat, 21 Jul 2007 18:18:53 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sun, 22 Jul 2007 08:43:57 GMT]]></title><description><![CDATA[<p>Welche Version vom Builder benutzt du?<br />
Bei mir gibts die Funktionen nicht.</p>
<p>Und falls es die Funktionen auch für z.B. TImages gibt, dann könntest du es ja so versuchen, dass du das Image auch transparent machst und das selbe in die OnMouseMove schreibst.</p>
<p>mfg<br />
Jakel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1330084</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1330084</guid><dc:creator><![CDATA[Jakel]]></dc:creator><pubDate>Sun, 22 Jul 2007 08:43:57 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sun, 22 Jul 2007 10:58:55 GMT]]></title><description><![CDATA[<p>benutze den bcb 6<br />
des prob ist halt wenn ich des ding transparent mach, reagiert der desktop oder das fenster unter meiner form auf die events!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1330156</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1330156</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Sun, 22 Jul 2007 10:58:55 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Sun, 22 Jul 2007 12:31:23 GMT]]></title><description><![CDATA[<p>Schonmal mit nem Maushook versucht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1330203</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1330203</guid><dc:creator><![CDATA[Rostfrei**]]></dc:creator><pubDate>Sun, 22 Jul 2007 12:31:23 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Mon, 23 Jul 2007 08:06:34 GMT]]></title><description><![CDATA[<p>nee<br />
was muss ich da machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1330581</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1330581</guid><dc:creator><![CDATA[ky_fr34k]]></dc:creator><pubDate>Mon, 23 Jul 2007 08:06:34 GMT</pubDate></item><item><title><![CDATA[Reply to Object an Cursor heften on Mon, 23 Jul 2007 13:43:34 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>das <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39184.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-39184.html</a> lesen <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>mfg, Micha!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1330857</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1330857</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 23 Jul 2007 13:43:34 GMT</pubDate></item></channel></rss>