<?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: Saving User and Application Settings in WinForms</title>
	<atom:link href="http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/feed/" rel="self" type="application/rss+xml" />
	<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/</link>
	<description>Premium Web Application Development</description>
	<lastBuildDate>Fri, 11 May 2012 06:51:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Ch. adeel</title>
		<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/#comment-303514</link>
		<dc:creator>Ch. adeel</dc:creator>
		<pubDate>Fri, 11 May 2012 06:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.codehill.com/?p=107#comment-303514</guid>
		<description>I am declaring different Names keeping their scope user type bool and default value to false. When a user logs in, i get all the permissions assigned to him and update settings accordingly so that i could access them in my whole project and i don&#039;t have to bring them from my database again and again and don&#039;t have to store them somewhere else as well.

Please let me know if its the correct idea or if you have better idea than this.</description>
		<content:encoded><![CDATA[<p>I am declaring different Names keeping their scope user type bool and default value to false. When a user logs in, i get all the permissions assigned to him and update settings accordingly so that i could access them in my whole project and i don&#8217;t have to bring them from my database again and again and don&#8217;t have to store them somewhere else as well.</p>
<p>Please let me know if its the correct idea or if you have better idea than this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devon</title>
		<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/#comment-276025</link>
		<dc:creator>Devon</dc:creator>
		<pubDate>Sun, 05 Feb 2012 01:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.codehill.com/?p=107#comment-276025</guid>
		<description>I am not very happy that people keep saying things like Change Application Settings, when in fact they are not showing how to change application settings.. They are showing how to change User Settings at run time. I did not find this helpful at all.</description>
		<content:encoded><![CDATA[<p>I am not very happy that people keep saying things like Change Application Settings, when in fact they are not showing how to change application settings.. They are showing how to change User Settings at run time. I did not find this helpful at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amgad Suliman</title>
		<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/#comment-7032</link>
		<dc:creator>Amgad Suliman</dc:creator>
		<pubDate>Wed, 03 Mar 2010 04:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.codehill.com/?p=107#comment-7032</guid>
		<description>It seems like both of you are getting the same error, you are trying to assign a value to a setting that has an application scope. Settings with application scope are meant for things like connection strings, which the user cannot change at run time. 

So if that&#039;s the case just delete the setting and create a new one with the same name and change the scope to User. That should solve it.</description>
		<content:encoded><![CDATA[<p>It seems like both of you are getting the same error, you are trying to assign a value to a setting that has an application scope. Settings with application scope are meant for things like connection strings, which the user cannot change at run time. </p>
<p>So if that&#8217;s the case just delete the setting and create a new one with the same name and change the scope to User. That should solve it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: me too</title>
		<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/#comment-7021</link>
		<dc:creator>me too</dc:creator>
		<pubDate>Tue, 02 Mar 2010 20:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.codehill.com/?p=107#comment-7021</guid>
		<description>I get cannot be assigned to — it is read only trying to assign to a setting. this doesn&#039;t work. application scope.</description>
		<content:encoded><![CDATA[<p>I get cannot be assigned to — it is read only trying to assign to a setting. this doesn&#8217;t work. application scope.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amgad Suliman</title>
		<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/#comment-4143</link>
		<dc:creator>Amgad Suliman</dc:creator>
		<pubDate>Wed, 07 Oct 2009 21:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.codehill.com/?p=107#comment-4143</guid>
		<description>Hello Nisse,
Could you give me some more details like, did you create SQLFormsTestConnectionString using the Settings tab and what is the scope?</description>
		<content:encoded><![CDATA[<p>Hello Nisse,<br />
Could you give me some more details like, did you create SQLFormsTestConnectionString using the Settings tab and what is the scope?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nisse</title>
		<link>http://codehill.com/2009/01/saving-user-and-application-settings-in-winforms/#comment-4131</link>
		<dc:creator>Nisse</dc:creator>
		<pubDate>Wed, 07 Oct 2009 12:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.codehill.com/?p=107#comment-4131</guid>
		<description>Hello

When I use this row
Properties.Settings.Default.SQLFormsTestConnectionString = tbConnectionString.Text;

I get compiler error. 
Inventory.Properties.Settings.SQLFormsTestConnectionString&#039; cannot be assigned to -- it is read only	

So... what is your solution to this and it seams that there  is none.</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>When I use this row<br />
Properties.Settings.Default.SQLFormsTestConnectionString = tbConnectionString.Text;</p>
<p>I get compiler error.<br />
Inventory.Properties.Settings.SQLFormsTestConnectionString&#8217; cannot be assigned to &#8212; it is read only	</p>
<p>So&#8230; what is your solution to this and it seams that there  is none.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

