<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Bar in C#.NET &#8211; How to Stop/Start the Ticker on Mouse Hover/Leave</title>
	<atom:link href="http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/</link>
	<description>Programming is our passion</description>
	<lastBuildDate>Mon, 12 Jul 2010 03:41:39 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mcdasa</title>
		<link>http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/comment-page-1/#comment-70</link>
		<dc:creator>mcdasa</dc:creator>
		<pubDate>Mon, 05 Jan 2009 07:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dottostring.com/?p=166#comment-70</guid>
		<description>Hi~ It&#039;s me again~
I&#039;ve solved the problem I told you,
But the door is still closed.. :(

If I seperate main application into two threads, which the first thread is for Ticker itself and the other one is for the event that includs [FOR] Statements I thought It would work, I could give an mouse over event on it.

But still I can see sand-timer icon when that ticker is showing up~.

What should I do.., :(
Need your help, but still thanks!</description>
		<content:encoded><![CDATA[<p>Hi~ It&#8217;s me again~<br />
I&#8217;ve solved the problem I told you,<br />
But the door is still closed.. <img src='http://www.dottostring.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>If I seperate main application into two threads, which the first thread is for Ticker itself and the other one is for the event that includs [FOR] Statements I thought It would work, I could give an mouse over event on it.</p>
<p>But still I can see sand-timer icon when that ticker is showing up~.</p>
<p>What should I do.., <img src='http://www.dottostring.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Need your help, but still thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: babarjehangir</title>
		<link>http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/comment-page-1/#comment-51</link>
		<dc:creator>babarjehangir</dc:creator>
		<pubDate>Mon, 29 Dec 2008 11:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.dottostring.com/?p=166#comment-51</guid>
		<description>Thanks,
my guess would be that you have put in the for loops which bring up the notification bar in the Timer&#039;s Tick Event which for obvious reasons keeps the status of the notification bar busy because the thread which is running your application is totally dedicated to move those notifications.

The trick is to handle the ticker in a separate thread which is created when Timer&#039;s Tick event is called. This would mean that the main thread is free to handle other calls while the other thread you created will keep the ticker going.</description>
		<content:encoded><![CDATA[<p>Thanks,<br />
my guess would be that you have put in the for loops which bring up the notification bar in the Timer&#8217;s Tick Event which for obvious reasons keeps the status of the notification bar busy because the thread which is running your application is totally dedicated to move those notifications.</p>
<p>The trick is to handle the ticker in a separate thread which is created when Timer&#8217;s Tick event is called. This would mean that the main thread is free to handle other calls while the other thread you created will keep the ticker going.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mcdasa</title>
		<link>http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/comment-page-1/#comment-50</link>
		<dc:creator>mcdasa</dc:creator>
		<pubDate>Mon, 29 Dec 2008 08:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dottostring.com/?p=166#comment-50</guid>
		<description>Hello, thanks for great work!
My question before was about this,
I&#039;m programing for my server management,
see below

1. Program is showing on tray with context menu :
  - DB Replication Monitoring Start
  - DB Replication Monitoring Stop
2. When monitoring start, Timer(Windows.Forms.Timer) starts and check DB status in every 60 seconds
3. When Something is wrong, Notify status to the administrator which is me~ using your program! in every 60 seconds.(also using another timer, every 60 seconds it shows up and down)

But the problem is that
while this Notification Ticker is showing up
I can&#039;t click on my context menuitem.

I think it&#039;s because of [For] statements. Can you gimme any idea? I&#039;m still working on it..... :(</description>
		<content:encoded><![CDATA[<p>Hello, thanks for great work!<br />
My question before was about this,<br />
I&#8217;m programing for my server management,<br />
see below</p>
<p>1. Program is showing on tray with context menu :<br />
  &#8211; DB Replication Monitoring Start<br />
  &#8211; DB Replication Monitoring Stop<br />
2. When monitoring start, Timer(Windows.Forms.Timer) starts and check DB status in every 60 seconds<br />
3. When Something is wrong, Notify status to the administrator which is me~ using your program! in every 60 seconds.(also using another timer, every 60 seconds it shows up and down)</p>
<p>But the problem is that<br />
while this Notification Ticker is showing up<br />
I can&#8217;t click on my context menuitem.</p>
<p>I think it&#8217;s because of [For] statements. Can you gimme any idea? I&#8217;m still working on it&#8230;.. <img src='http://www.dottostring.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to create(make a Windows Form act like) a Docking Window without a container in C#.NET &#124; .toString()</title>
		<link>http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/comment-page-1/#comment-29</link>
		<dc:creator>How to create(make a Windows Form act like) a Docking Window without a container in C#.NET &#124; .toString()</dc:creator>
		<pubDate>Wed, 17 Dec 2008 11:20:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dottostring.com/?p=166#comment-29</guid>
		<description>[...] How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Ba... [...]</description>
		<content:encoded><![CDATA[<p>[...] How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Ba&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Bar in C#.NET &#124; .toString()</title>
		<link>http://www.dottostring.com/2008/12/how-to-make-pop-up-notification-bar-with-message-ticker-smooth-message-scroller-over-the-task-bar-in-c-sharp-net-how-to-stopstart-the-ticker-on-mouse-hoverleave/comment-page-1/#comment-28</link>
		<dc:creator>How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Bar in C#.NET &#124; .toString()</dc:creator>
		<pubDate>Wed, 17 Dec 2008 11:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dottostring.com/?p=166#comment-28</guid>
		<description>[...] How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Ba... [...]</description>
		<content:encoded><![CDATA[<p>[...] How to make pop-up / Notification bar with Message Ticker (smooth message scroller) over the Task Ba&#8230; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
