<?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 for I Learned It Online</title>
	<atom:link href="http://ilearneditonline.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilearneditonline.wordpress.com</link>
	<description></description>
	<pubDate>Tue, 18 Nov 2008 21:44:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by Kristian</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-120</link>
		<dc:creator>Kristian</dc:creator>
		<pubDate>Sat, 01 Nov 2008 23:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-120</guid>
		<description>i used nano and it worked fine.</description>
		<content:encoded><![CDATA[<p>i used nano and it worked fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by Joe</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-119</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 01 Nov 2008 11:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-119</guid>
		<description>Kristian,

I like to use vi http://en.wikipedia.org/wiki/Vi. It is fairly easy to use. 

vi /etc/X11/xorg.conf

Use the down arrow to go to the DefaultDepth setting and the right arrow to get over to the 24. Then you use the d -&#62; space, to delete the 2 and the 4. Then select Esc, though I do not believe you have to, it has become habit for me to esc before moving on to a different command. Next you want to use the i key to begin inserting the new text. Type 16 at this point. Once you have that finished, select Esc -&#62; : -&#62; wq! -&#62; enter. This will force the save. 

You should now be good to go.</description>
		<content:encoded><![CDATA[<p>Kristian,</p>
<p>I like to use vi <a href="http://en.wikipedia.org/wiki/Vi" rel="nofollow">http://en.wikipedia.org/wiki/Vi</a>. It is fairly easy to use. </p>
<p>vi /etc/X11/xorg.conf</p>
<p>Use the down arrow to go to the DefaultDepth setting and the right arrow to get over to the 24. Then you use the d -&gt; space, to delete the 2 and the 4. Then select Esc, though I do not believe you have to, it has become habit for me to esc before moving on to a different command. Next you want to use the i key to begin inserting the new text. Type 16 at this point. Once you have that finished, select Esc -&gt; : -&gt; wq! -&gt; enter. This will force the save. </p>
<p>You should now be good to go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by Kristian</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-118</link>
		<dc:creator>Kristian</dc:creator>
		<pubDate>Sat, 01 Nov 2008 09:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-118</guid>
		<description>Hi, what are the command to open xorg.conf ? i am a newbie in linux so dont get angry :P</description>
		<content:encoded><![CDATA[<p>Hi, what are the command to open xorg.conf ? i am a newbie in linux so dont get angry <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF: How to set the SelectedValue on Data Bound ComboBox by ed</title>
		<link>http://ilearneditonline.wordpress.com/2008/06/26/how-to-set-the-selectedvalue-on-data-bound-wpf-combobox/#comment-117</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Sun, 19 Oct 2008 01:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=178#comment-117</guid>
		<description>good topic!

Actually, you dont need to inherit INotifyPropertyChanged for both classes Contact and Company since ObservableCollection already provides notifications.

From msdn
http://msdn.microsoft.com/en-us/library/ms668604.aspx

ObservableCollection(T) Class definition:
"Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed."

I took the example, got rid of the notifying setters and it works find!

Contact would be:
public class Contact
{
   public int Id { get; set; }

   public int CompanyId { get; set; }

   public string FirstName { get; set; }

   public string LastName { get; set; }

    
   public Contact(int id, 
                  int companyId, 
                  string firstName, 
                  string lastName)
   {
      this.Id = id;
      this.CompanyId = companyId;
      this.FirstName = firstName;
      this.LastName = lastName;
   }
}</description>
		<content:encoded><![CDATA[<p>good topic!</p>
<p>Actually, you dont need to inherit INotifyPropertyChanged for both classes Contact and Company since ObservableCollection already provides notifications.</p>
<p>From msdn<br />
<a href="http://msdn.microsoft.com/en-us/library/ms668604.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms668604.aspx</a></p>
<p>ObservableCollection(T) Class definition:<br />
&#8220;Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed.&#8221;</p>
<p>I took the example, got rid of the notifying setters and it works find!</p>
<p>Contact would be:<br />
public class Contact<br />
{<br />
   public int Id { get; set; }</p>
<p>   public int CompanyId { get; set; }</p>
<p>   public string FirstName { get; set; }</p>
<p>   public string LastName { get; set; }</p>
<p>   public Contact(int id,<br />
                  int companyId,<br />
                  string firstName,<br />
                  string lastName)<br />
   {<br />
      this.Id = id;<br />
      this.CompanyId = companyId;<br />
      this.FirstName = firstName;<br />
      this.LastName = lastName;<br />
   }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by ast</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-116</link>
		<dc:creator>ast</dc:creator>
		<pubDate>Mon, 22 Sep 2008 03:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-116</guid>
		<description>Thanks a lot, worked perfectly! So easy yet so hard for a beginner.</description>
		<content:encoded><![CDATA[<p>Thanks a lot, worked perfectly! So easy yet so hard for a beginner.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by Hartmut Sieber</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-115</link>
		<dc:creator>Hartmut Sieber</dc:creator>
		<pubDate>Wed, 17 Sep 2008 12:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-115</guid>
		<description>Changing depth to 16 in /etc/X11/xorg.conf fixes the splash screen Problem with Debian 4.0 perfectly!
Great Tip!
Thx</description>
		<content:encoded><![CDATA[<p>Changing depth to 16 in /etc/X11/xorg.conf fixes the splash screen Problem with Debian 4.0 perfectly!<br />
Great Tip!<br />
Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use USB727 with Pendrive Linux by Steven C</title>
		<link>http://ilearneditonline.wordpress.com/2008/04/06/how-to-use-usb727-with-pendrive-linux/#comment-113</link>
		<dc:creator>Steven C</dc:creator>
		<pubDate>Thu, 28 Aug 2008 16:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=155#comment-113</guid>
		<description>Thanks a lot! This worked flawlessly. I was up and running immediately. After the initial setup, the modem settings get saved. All you have to do when you boot up is unload the usbserial serial driver and begin going through the setup. Instead of selecting /dev/ttyUSB0 you select /dev/modem and your Verizon settings are all there. Easy.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! This worked flawlessly. I was up and running immediately. After the initial setup, the modem settings get saved. All you have to do when you boot up is unload the usbserial serial driver and begin going through the setup. Instead of selecting /dev/ttyUSB0 you select /dev/modem and your Verizon settings are all there. Easy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by debian fan</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-96</link>
		<dc:creator>debian fan</dc:creator>
		<pubDate>Tue, 05 Aug 2008 12:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-96</guid>
		<description>It is working well :)
Thx</description>
		<content:encoded><![CDATA[<p>It is working well <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install Linux Mint on ASUS eeePc with USB by Joe</title>
		<link>http://ilearneditonline.wordpress.com/2008/03/11/install-linux-mint-on-asus-eeepc-with-usb/#comment-91</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 31 Jul 2008 20:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/2008/03/11/install-linux-mint-on-asus-eeepc-with-usb/#comment-91</guid>
		<description>John,

The only reason I didn't mention changing the fixmint.bat file was because if someone isn't comfortable editing the file, inserting the USB drive first is easier. But your method is easier if you already have the have the fixmint.bat file and are comfortable editing it.</description>
		<content:encoded><![CDATA[<p>John,</p>
<p>The only reason I didn&#8217;t mention changing the fixmint.bat file was because if someone isn&#8217;t comfortable editing the file, inserting the USB drive first is easier. But your method is easier if you already have the have the fixmint.bat file and are comfortable editing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Debian on Virtual PC 2007 by Icarus</title>
		<link>http://ilearneditonline.wordpress.com/2007/04/06/installing-debian-on-virtual-pc-2007/#comment-62</link>
		<dc:creator>Icarus</dc:creator>
		<pubDate>Tue, 22 Jul 2008 11:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilearneditonline.com/?p=99#comment-62</guid>
		<description>Thank you for the tutorial... i managed to fix my display :)</description>
		<content:encoded><![CDATA[<p>Thank you for the tutorial&#8230; i managed to fix my display <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
