<?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>Comment Feed for Channel 9 - Understanding Isolated Storage - Day 3 - Part 6</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/213b/10e85053-4185-48f4-ab1d-9e230017213b/day3part6_100_ch9.jpg</url>
		<title>Channel 9 - Understanding Isolated Storage - Day 3 - Part 6</title>
		<link></link>
	</image>
	<description> Each Windows Phone 7 application is allocated space on the phone&#39;s flash drive where it can store information in a solitary area that cannot be accessed by other applications. The application can save any type of file or data here. In this video, Bob demonstrates how to utilize this feature to create new files or open existing files (like text files), read them, and display their information on the Phone&#39;s display. Download the source code in c# Download the source code in VB.Net </description>
	<link></link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 08:29:31 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 08:29:31 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[Hi Bob<br />Where abouts is isolated storage found on the computer during wp7 emulation? This would be convenient to know for debugging.<br />Thanks,<br />Brendan<p>posted by Brendan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634282472090000000</link>
		<pubDate>Sat, 18 Dec 2010 05:33:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634282472090000000</guid>
		<dc:creator>Brendan</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[I am getting errors on the "IsolatedStorageFile" and "StreamWriter" items in the code. I have both verified the code is the same as the video and copied the Code from the MainPage.Xaml.cs source code and it still flags it as an error.<p>posted by Stephen Borders</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634293145450000000</link>
		<pubDate>Thu, 30 Dec 2010 14:02:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634293145450000000</guid>
		<dc:creator>Stephen Borders</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[ <p>I'm also getting the same issues with IsolateStorageFile and StreamWriter :/</p><p>posted by TimothyRice</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634293573770000000</link>
		<pubDate>Fri, 31 Dec 2010 01:56:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634293573770000000</guid>
		<dc:creator>TimothyRice</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[ <p>If you pause the video at 3:14, you can see that new code appears in lines 13 and 14.&nbsp;&nbsp;Adding the following code to lines 13 and 14 appears to solve the issue.<br><br>using System.IO.IsolatedStorage;<br>using System.IO;</p><p>posted by TimothyRice</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634293593400000000</link>
		<pubDate>Fri, 31 Dec 2010 02:29:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634293593400000000</guid>
		<dc:creator>TimothyRice</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[this also brings up the (small) issue, that if someone were to get this exact example from the marketplace and click the "open" button before anything was saved, you would have the same issue as when restarting your phone emulator, i.e. the unhandled exception. make sure to use some kind of error-catching, or at least a simple if statement to check whether the file exists.<p>posted by Aaron Agema</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634304452610000000</link>
		<pubDate>Wed, 12 Jan 2011 16:07:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634304452610000000</guid>
		<dc:creator>Aaron Agema</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[ <p>The thing is the data stored are not overwritten when a new data is stored. hence when the new data (e.g. 12345)&nbsp;has less characters than the previous data (e.g. 987654321), and when we recall the data, the part of the prvious data after the new data is recalled as well (e.g. 123454321).</p><p>So how do we completely clear out the previous data when the new data is stored?</p><p>posted by dicey</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634309623790000000</link>
		<pubDate>Tue, 18 Jan 2011 15:46:19 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634309623790000000</guid>
		<dc:creator>dicey</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[ <p>Very cool indeed.</p><p>posted by petaganayr</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634320130140000000</link>
		<pubDate>Sun, 30 Jan 2011 19:36:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634320130140000000</guid>
		<dc:creator>petaganayr</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[Great video series!!<br />My question relates to the saved file (simple.txt) and the open/recall function. When the user enters new information and saves it to the flash memory of the device, the old entry is not completely overwritten. The user has to termintate the program to completely clear the initial message from the flash memory. Is there a fix to this? If so, what is it? That would have been a great ending to this video...and helped me tremendously!<p>posted by Shawn</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634322599320000000</link>
		<pubDate>Wed, 02 Feb 2011 16:12:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634322599320000000</guid>
		<dc:creator>Shawn</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[@Shawn: You need to delete the file before writing with something like<br /><br />using<br /><br />(IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication())<br />{<br />storage.Remove();<br /><br />}<br /><br />&nbsp;<p>posted by Cyrill</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634327317000000000</link>
		<pubDate>Tue, 08 Feb 2011 03:15:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634327317000000000</guid>
		<dc:creator>Cyrill</dc:creator>
	</item>
	<item>
		<title>Re: Understanding Isolated Storage - Day 3 - Part 6</title>
		<description>
			<![CDATA[ <p>Hi, i have a question:</p><p>if I switch off my phone after saved my file, when i restart the phone the file is deleted, clear, or is the same that i have svaed before?</p><p>Thanks</p><p>posted by minompi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634336265210000000</link>
		<pubDate>Fri, 18 Feb 2011 11:48:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-Isolated-Storage#c634336265210000000</guid>
		<dc:creator>minompi</dc:creator>
	</item>
</channel>
</rss>