Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
1k views

FileNotFoundException in ApplicationSettingsBase

When debugging an application I always get the following error when break on exception is enabled in Visual Studio. This is really bugging me, since we work with break on exception. The funny thing ...
4
votes
1answer
463 views

appSettings file attribute equivalent for applicationSettings

In a asp.net web.config file you can do <appSettings file="local.appSettings.config"> <add key="foo" value="bar" /> </appSettings> and it will look in local.appSettings.config ...
3
votes
6answers
263 views

how to store settings for deployable c# application?

I want to store settings for my C# application, such that default setttings can be easily shipped with my binaries and the end-user can change them using a simple text editor(or in some other simple ...
3
votes
1answer
515 views

How do I retrieve ApplicationSettings from a loaded app.config file

Is it possible to access the values from the applicationSettings section of a loaded app.config file? I have found an example How do I retrieve appSettings, but i can't find out how to access ...
2
votes
1answer
321 views

Application Settings + DirectoryInfo/FileInfo

I'm still new to C#... I'm building a WPF application and I'm trying to apply some User Application Settings. It's easy to insert standard App Settings (int, double, string, etc). I've even got ...
2
votes
3answers
1k views

how to change .NET user settings location

By default settings are stored at: C:\Documents and Settings\\Local Settings\Application Data\<Project Name> How can I change this path to application directory. I also don't want to have ...
2
votes
2answers
916 views

Validating Application Settings Key Values in Isolated Storage for Windows Phone Applications

I am very new at all this c# Windows Phone programming, so this is most probably a dumb question, but I need to know anywho... IsolatedStorageSettings appSettings = ...
2
votes
1answer
73 views

how to make NSUserDefaults show in Setting on iPhone?

according to this image, i try to save data in NSUserDefaults but my App not have application setting in menu Setting on iPhone? how can i make this? thanks.
2
votes
2answers
1k views

C# - User Settings broken

We had a rare exception occur when reading the standard .Net user settings (this are the ones found in "project properties" in VS 2008): System.Configuration.ConfigurationErrorsException was caught ...
1
vote
4answers
120 views

How to call a specific user default in iOS

I'm trying to call up a specific setting that is saved in the settings bundle of my iphone app. I want to do an if statement based on what was saved. My code in the implementation file looks like ...
1
vote
0answers
73 views

AppSettings and ApplicationSettings in the same config file

I created an application that uses applicationSettings in the config file. This app uses an older library that reads data from appSettings. I can't seem to use both of these sections in the same ...
1
vote
2answers
983 views

Why is isolated storage not persisting in my WP7 application?

I am using IsolatedStorageSettings.ApplicationSettings for my application. All code associated with Isolated storage occurs in my Application_Launching, Application_Activated, Application_Closing, and ...
1
vote
1answer
497 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
197 views

.NET Unit Testing - How to Test applicationSettings

I have a class library that is using application settings to determine the behavior of a particular method. I realize that the argument could be made that this is a Bad Thing, but we know that the ...
0
votes
2answers
38 views

Are user scoped application settings (created in the VS designer) thread safe?

I have created application settings in my visual studio project, containing both user scoped settings and application scoped settings. My application has several threads that may access the settings ...
0
votes
1answer
95 views

Can custom applicationSettings sections be configured using the IIS 7 Configuration Editor?

I'd like to edit application-specific settings by using the IIS 7 Configuration Editor. The settings are stored in an applicationSettings section, the kind automatically added for you when using ...
0
votes
2answers
172 views

Visual Studio, Application Settings… rearrange

Silly questions... purely aesthetic... given the picture above. How do you move the values up/down? For example, State belongs grouped with Height/Width/Top/Left (Window Position + state). Not the ...
0
votes
1answer
244 views

WPF StringCollection + TextBox

ApplicationSetting: RenameSettings - System.Collections.Specialized.StringCollection - User - *wall of text" <Application x:Class="app.App" ... ...
0
votes
3answers
646 views

ASP.NET applicationSettings (Giving Me) Fits

I've read all of the examples and I've yet to figure out how to get information out of the web.config file using applicationSettings (as opposed to appSettings). I have the following for my ...
0
votes
1answer
673 views

iPhone Settings.bundle - how to disable/enable a setting based on other settings?

Hard to explain, but luckily there's an example. On an iPhone, when you go to Settings > Nike + iPod, in the app's settings, when you set Nike+iPod to off, it disables the rest of the settings. How ...
0
votes
1answer
363 views

initial settings of NSUserDefaults

So I was reading this: http://stackoverflow.com/questions/2228302/storing-iphone-application-settings-in-app which seems simple enough. However, where/how would I define the initial settings? So for ...
0
votes
1answer
70 views

How do I store a custom class from within the same assembly in application settings?

I have a very simple class public class Preferences { public bool RepeatInfinite { get; set; } public int RepeatCount { get; set; } } If I put this class in another assembly it shows up in ...
0
votes
1answer
145 views

Application settings do not allways save

I have a bit of a Heisenbug. I have a list of what was recently searched for sometimes it will save the history some times it does not. When I attach the debugger and step through StartFind() it works ...
0
votes
1answer
470 views

Why does a simple ApplicationSetting PropertyBinding for a Form does not work in C#?

My question involves this simple walkthrough shown in the article Preserve Size and Location of Windows Forms – Part I by Dennis Wallentin. This approach works 100% fine when using VB.NET. When ...
0
votes
2answers
311 views

ApplicationSettings across libraries

I'm trying to abstract out all database code into a separate library and then use that library in all my code. All database connections are done using typed TableAdapters that I create by dragging and ...