Tagged Questions
The settings.settings tag has no wiki summary.
17
votes
7answers
2k views
When to use .NET Settings vs config <appsettings>?
Are there any recommendations on when to use Application settings (not per user settings) vs. .config file <appsettings>?
Update
Looking to understand some of the finer and important ...
8
votes
4answers
487 views
How to persist changes in a .settings/.config file across a file version change?
I have created an application that uses settings.settings to store some user specific settings (scope=User). Settings are loaded correctly on startup, changed during use and saved correctly for next ...
7
votes
2answers
153 views
C# Settings File: Why do I have to use Settings.Default?
I'm just wondering why it's Settings.Default.<mysetting> instead of just Settings.<mysetting>?
4
votes
1answer
253 views
Settings.settings vs. app.config in .NET desktop app
I am quite confused by the apparent redundancy of these two mechanisms in Visual Studio to store and manage desktop application settings:
You can use the XML app.config file, adding items to the ...
4
votes
1answer
169 views
Can you store a generic dictionary in Properties.Settings in 4.0?
The new Dictionary<Tkey,TValue> in .net 4.0 is serializable, so... can I now somehow use this in the Settings.Settings or Settings.Designer.cs?
4
votes
2answers
1k views
Can you use Settings.Settings file for ASP.Net sites also?
I have a code base that has been used as an ASP.Net web application. It's now branching out and being used as part of two WinForms applications.
The main difference is that the WinForms apps should ...
3
votes
1answer
183 views
Custom data type in Settings.settings as array of class
I searched the web and found how to add specific custom data type in settings. I'm inserting data by my self, not by code while program running. My problem was how to add custom data type to combobox ...
3
votes
3answers
778 views
Adding comments to Settings.Designer.cs
I'm using a .Settings file in my Visual Studio 2008 project which auto-generates a Settings.Designer.cs file from the PublicSettingsSingleFileGenerator custom tool.
This works fine, but I also want ...
3
votes
1answer
211 views
How do you save an object to a fooSettings.settings file in Visual Studio?
Can you save an object to a settings.settings file in Visual Studio? If so how? I think you can make your object serializable and it should persist, but I'm not sure if I'm doing it right i.e. when ...
3
votes
2answers
692 views
How do I supply extra info to IApplicationSettingsProvider class?
Perhaps this question has been asked before in a different way, but I haven’t been able to find it.
I have one or more plugin adapter assemblies in my application all having the type IPlugin, for ...
2
votes
0answers
206 views
How to get enterprise library configuration and project settings designer reference the same value in app.config
I would like to configure application and user settings using the design time tools in Visual Studio (2010)
For example:
For the application settings I would like to use the Enterprise Library ...
2
votes
1answer
130 views
.NET Settings File Available Types
When modifying a .NET settings file, I'm given a choice of types for a setting. However, not all of the types accessible by my project appear, even in the 'Browse' window.
What determines if a type ...
2
votes
2answers
562 views
Where should I store my application data?
I have an application that needs to store data. Currently, I am using the built-in Application Settings to do it, but it only gives me two choices: application and user scopes. Ideally, I want a ...
2
votes
1answer
580 views
Load from Properties.Settings to ArrayList?
Here is the settings file that is leftover from saving. (Saving the properties works correctly.)
<setting name="AlarmList" serializeAs="Xml">
<value>
<ArrayOfAnyType ...
1
vote
2answers
59 views
application settings and settings.settings and configurationmanagers.appsettings oh my
Alright I'm trying to learn all the different options on how to implement application and user settings and it is all very confusing to me.
What is the difference between using the settings.settings ...
1
vote
1answer
40 views
Is it possible to use a custom Class in Properties.Settings.setting
I know that it is possible to use settings to store some default values or user settings of program.
But I need to make a setting that can hold a class that I wrote myself. Is this possible? I can't ...
1
vote
1answer
63 views
Trouble saving a collection of objects in Application Settings
I'm trying to store a collection of custom objects in the Application Settings.
With some help from this related question, here is what I currently have:
// implementing ApplicationSettingsBase so ...
1
vote
3answers
98 views
Properties.Settings is not the value I expect it to be
I have a setting in my project that, when referenced from code (i.e. i hover over the object I can see the value), is not the same as what is in the Properties.Settings file. It is an old value. I can ...
1
vote
2answers
673 views
C# - Compiler Error: System.Configuration.ConfigurationErrorsException was unhandled
Hey Everyone,
How do I fix the Compiler Error upon compiling on "return ((string)(this["TargetDir"]));":
System.Configuration.ConfigurationErrorsException was unhandled
Configuration system ...
1
vote
1answer
359 views
Using a ListDictionary Class setting (Settings.settings)
In my C# program (.net v4, MS Visual C# Express) I am attempting to use a setting of the class ListDictionary.
Here's my test code:
// String setting
Properties.Settings.Default.StringTest = "Llama ...
1
vote
1answer
154 views
How to automatically propogate app.config changes to .settings file in Visual Studio 2010
I have a project with a custom pre-build step which modifies my app.config file. This modification will propagate to a Settings.settings file in the project, but only if I double-click this ...
1
vote
1answer
323 views
How to modify Settings.Designer.cs at build time?
I have a C# class library project with some settings in Settings.settings. I need to be able to change these settings at build time based on the configuration (Debug, Release, etc.).
It's fairly ...
1
vote
1answer
676 views
update Android provider.Settings.System value
it seen i can't write to settings in LG-P500 (Android 2.2).
This is my code:
android.provider.Settings.System.putInt(getContentResolver(), android.provider.Settings.System.AUTO_TIME, 1);
Value to ...
1
vote
2answers
2k views
<userSettings> in app.config Could not find schema information for the element 'userSettings'
Hello when I try to add parameters to the settings table
I get multiple messages for each parameter I add.
e.g.:
Could not find schema information for
the element 'userSettings'
Could not find ...
1
vote
0answers
105 views
In Settings.settings, default Provider does not support user-specific settings?
I have this project in VS2010, MVC2 written in C#. My problem is that it doesn't seem like I can have user-specific settings, only application-specific, which I then can't update from code which is ...
1
vote
2answers
133 views
.Net Settings file, complex types and serialization
I have the following types
[Serializable, XmlType(Namespace="http://mycompany/foo"]
public sealed class Limit
{
[XmlElement(ElementName="Value1")]
public double Value1 {get;set;}
...
1
vote
3answers
222 views
Properties.Settings Ambiguity after adding LINQ to SQL
I have recently linked a database to my C# service by creating a LINQ to SQL item in my solution. Everything was fine and dandy as I was continuing to code, but then I suddenly noticed that there ...
1
vote
1answer
499 views
VisualStudio 2010 Settings Page - Collection Settings
I have a list of Filemaker database names
Each DB name has a list of field/attribute pairs associated with it
I have a windows form application in C# 4.0 (vs2010) that wants to use the above data
I ...
1
vote
2answers
420 views
How do I store an array of a particular type into my settings file?
For some reason, I can't seem to store an array of my class into the settings. Here's the code:
var newLink = new Link();
Properties.Settings.Default.Links = new ArrayList();
...
1
vote
1answer
693 views
How do I invoke my custom settings provider?
I need to specify a different location for my settings file. After many long hours of searching, I found out that I have to write my own SettingsProvider. I succeeded in creating one which allows me ...
1
vote
1answer
181 views
C# Enterprise Block Application Settings and Settings.Settings designer
I am working with v4 of the Enterprise Application block and I am trying to learn how to access the Application Settings that I have added using the Enterprise Library Configuration tool. It's as if ...
0
votes
1answer
46 views
Customizing a Winforms Settings Page
I've got a settings page built up in C# and I'd like to customize it in 2 ways.
I'd like the different settings to be sorted in a particular order that is not alphabetic
I'd like to enable/disable ...
0
votes
1answer
49 views
.NET Where are my application settings being persisted
I apologize this is going to be long winded. But I feel an understand of what I've done will better help some answer my question.
I've been working on adding application and user settings to a ...
0
votes
1answer
94 views
How to set default application path value in user scoped settings
In my C# project, I have a user scoped setting for a folder path which I want to set at design time so that it becomes the default value for new users (If i am not mistaken).
I want to set the ...
0
votes
1answer
177 views
Use Values of Project/Properties/Settings.settings in InnoSetup script?
I want to be able to change a value in one place in my C# .NET 4.0 Project. For this I use the built in Properties/Settings.settings file, which is essentially an XML file.
As we're using InnoSetup ...
0
votes
1answer
30 views
Arbitrary data types in Settings file
There are a handful of default listed data types in the Settings.settings file, and then you can add some more from a tree when you select "Browse".
I actually need to store an int[] in my settings ...
0
votes
0answers
81 views
DataContext Designer w/o using app.config or settings.settings
I'm using the DataContext designer to create my LINQ-TO-SQL classes, and since we're doing an iterative DB design, it's very convenient to drop tables/views/sprocs from the Server Explorer directly ...
0
votes
1answer
44 views
modify settings.settings from different app
I have a console application and am currently storing some settings data in the .settings file. I would like to add a front-end, preferably using wpf, that allows administrators to modify the ...
0
votes
0answers
117 views
C# Dynamic Web Reference and not generating Settings.settings
Is there anyway to turn off the generation of the Settings.settings file when I add a web reference? The problem is that creating the Settings.settings file creates a dependency to ...
0
votes
0answers
75 views
How can I get my dll to use it's <dll>.config file vs the settings.settings that are being compiled in to dll as default?
I have a dll that has a settings.settings file. the build action is resource. When I compile it, VS 2010 creates a .dll.config file. Now when I reference the dll from a web app, the dll does not ...
0
votes
0answers
24 views
automatic configuration [closed]
how to disable automatic configuration in LAN settings solve my problem
0
votes
1answer
228 views
“Configuration system failed to initialize” when getting values from Settings.settings
Too much frustrated with this problem... :-(
Winforms, C# 2.0, VS 2010
While developing, I just try to access to a setting value in Settings.setting file. For example:
string foo = ...
0
votes
4answers
247 views
C#: How to make sure a settings variable exists before attempting to use it from another assembly?
I have the following:
using CommonSettings = MyProject.Commons.Settings;
public class Foo
{
public static void DoSomething(string str)
{
//How do I make sure that the setting exists ...
0
votes
1answer
44 views
Settings.settings and outputing to an array
I currently have a tab control with around 20 tabs and im looking to give each one of them a true / false value that is saved in the Settings.settings file so it can be called at the form load and ...
0
votes
2answers
233 views
Modifying application settings in unit tests
I have a class library I want to unit test using Microsofts unit test framework. Some of the classes I want to test are configured using application settings. These settings are defined inside the ...
0
votes
1answer
444 views
WPF Properties.Settings throws exception on launch and close
When my Wpf app starts up I get a BindingFailureException in Settings.Designer.cs
[global::System.Configuration.UserScopedSettingAttribute()]
...
0
votes
1answer
441 views
Visual Studio Settings.settings file
Is there a way of creating a new setting in the Settings.settings file during run time?
For example, I want to write to the settings file from one class function, and read that value from a different ...
0
votes
0answers
333 views
Cannot access app.config or settings.settings data
I have a .Net 3.5 application that needs to load a string from settings.settings or app.config. I made sure I have a reference to ConfigurationManager but a very simple call from form load value ...
0
votes
1answer
171 views
Save a ListView into Settings.settings?
How can I save a ListView with multicolumns into Settings.settings and load them upon running?
I'm trying to save a ListView with 3 columns. How can I do that?
0
votes
1answer
380 views
Load a DateTime array into ListBox?
How can I save a Properties.Settings.Default.Array using DateTime format (with just the time)?