<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - Clock</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - Clock</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sat, 25 May 2013 22:37:39 GMT</pubDate>
	<lastBuildDate>Sat, 25 May 2013 22:37:39 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>4</c9:totalResults>
	<c9:pageCount>-4</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - Clock</title>
		<description><![CDATA[<p>In Vb can anyone help with how to create a form that has a clock in it. So I can use it to tell the time.<br>
<br>
Do I need to create a thread when the form loads ?<br>
<br>
<br>
<br>
Or is there a clock obect with a tick event that I can use ?<br>
Is this the right approach ?<br>
<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/251766-Clock/251766#251766</link>
		<pubDate>Sat, 27 Jan 2007 19:49:14 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/251766-Clock/251766#251766</guid>
		<dc:creator>SEP2007</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SEP2007/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Clock</title>
		<description><![CDATA[<p>Drag a label and a Timer onto your form, and double click the form itself. Make sure you start the timer in the Constructor of the form, as seen in line 6. Then, in the Tick event of the timer, update the label.Text property to the current time, as seen
 in line 11. <br>
<br>
Hope that helps.<br>
&nbsp; .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: Consolas, &quot;Courier New&quot;, Courier, Monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd
 { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000;
 } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }
<div>
<pre>   1:      public partial class Form1 : Form</pre>
<pre>   2:      {</pre>
<pre>   3:          public Form1()</pre>
<pre>   4:          {</pre>
<pre>   5:              InitializeComponent();</pre>
<pre>   6:              timer1.Start();</pre>
<pre>   7:          }</pre>
<pre>   8:  &nbsp;</pre>
<pre>   9:          private void timer1_Tick(object sender, EventArgs e)</pre>
<pre>  10:          {</pre>
<pre>  11:              label1.Text = DateTime.Now.ToString();</pre>
<pre>  12:          }</pre>
<pre>  13:      }</pre>
</div></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/251766-Clock/c11f550dba0a49088c309dea015132f5#c11f550dba0a49088c309dea015132f5</link>
		<pubDate>Sat, 27 Jan 2007 21:57:46 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/251766-Clock/c11f550dba0a49088c309dea015132f5#c11f550dba0a49088c309dea015132f5</guid>
		<dc:creator>jsampsonPC</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jsampsonPC/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Clock</title>
		<description><![CDATA[<p>Brilliant, thanks.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/251766-Clock/d722d3d613344bce8f4e9dea0151331b#d722d3d613344bce8f4e9dea0151331b</link>
		<pubDate>Sun, 28 Jan 2007 00:12:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/251766-Clock/d722d3d613344bce8f4e9dea0151331b#d722d3d613344bce8f4e9dea0151331b</guid>
		<dc:creator>SEP2007</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SEP2007/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Clock</title>
		<description><![CDATA[<p>It worked<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/251766-Clock/57703a4117604a3996999dea01513341#57703a4117604a3996999dea01513341</link>
		<pubDate>Sun, 28 Jan 2007 01:17:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/251766-Clock/57703a4117604a3996999dea01513341#57703a4117604a3996999dea01513341</guid>
		<dc:creator>SEP2007</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/SEP2007/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>