Questions tagged [application-settings]

application-settings are global code or data used for configuration

Application settings are used to define key/value pairs for a broad range of data, such as:

  • default values
  • access control
  • file paths
  • protocol handlers
  • localization mappings

References

785 questions
0
votes
2 answers

Where are these settings coming from?

I have to pretty simple pieces of code: private void frmMain_Load(object sender, EventArgs e) { string[] EmployeeNames = Settings.Default.Employee_Names.Split(new char[] {';'}, StringSplitOptions.RemoveEmptyEntries); …
user2140261
  • 7,855
  • 7
  • 32
  • 45
0
votes
3 answers

What happens with settings after deleting the executable file?

Let's say I made a program that is without installer (only exe file) and its save some data on settings. What will happen if i delete that exe file? Will the settings delete automatically? If no can you give me some suggestions?
a1204773
  • 6,923
  • 20
  • 64
  • 94
0
votes
1 answer

How to retrieve web.config setting in web application subfolder

I have a subfolder in my web application. It's not a separate application, just a subfolder, but it has its own web.config. There is an aspx page in that subfolder which needs to access a setting in the web.config file in its own folder. When I…
Triynko
  • 18,766
  • 21
  • 107
  • 173
0
votes
1 answer

after switching language,fragment will increase duplicate option menu item

in v4.fragment, i set setHasOptionsMenu(true); and then in onCreateOptionsMenu i set inflater.inflate(R.menu.menu_fragment, menu);, everything is ok until i switch language. when the app is running, and i press home-key, open setting, change locale…
0
votes
1 answer

Storing a blob in application settings

What is the appropriate method of storing a blob (a large string of bytes) in (or with) application settings in .NET? I can think of several approaches, but none that seem as simple as it should be. Storing a base64 or hex string Slightly unwieldy…
Kendall Frey
  • 43,130
  • 20
  • 110
  • 148
0
votes
3 answers

Increase height of cell in Application setting screen

I am using this Tutorial for developing application setting screen.The problem is i want to increase height of cell in setting screen.And I have not taken any table view i am doing that by using Root.plist file.i.e i want to increase height of…
mshau
  • 503
  • 4
  • 19
0
votes
1 answer

Mutex not behaving as expected when loading Form settings

Based on an Code Project article on Windows Forms User Settings by David Veeneman, I have been playing around with saving the start location and start size of an application. It works perfectly in the single instance, but when I expand it to…
AidanO
  • 868
  • 1
  • 11
  • 33
0
votes
2 answers

.NET Modifying Class Library Application Settings from Host Application

Let's say I have the following scenario in .NET 4.0: - Solution containing: a) a Class Library b) a Console Application The Console Application references the Class Library. What I want is to setup some Application Settings in my Class Library and…
Overhed
  • 1,289
  • 1
  • 13
  • 41
0
votes
0 answers

Securing Twitter Consumer Tokens within Application Settings

I have a WPF application that will allow messages to be posted via a Twitter Application I have created. From what I understand the Consumer Key and Consumer Secret are used in conjunction with the generated PIN to create the Access Key and Access…
Jamie Keeling
  • 9,806
  • 17
  • 65
  • 102
0
votes
2 answers

How add button in settings.bundle in ios

I am using settings.bundle in my iOS app but problem is how to add button in that page and handling that button. Can any body help me on this.
0
votes
0 answers

I/O exception with user settings

I have created a C# project in Visual Studio 2012. This project has user settings associated with it (through Project Properties). When I open it in my projects release folder, it works exactly as expected, however when I copy it to another…
Lukas Bystricky
  • 1,222
  • 6
  • 16
  • 34
0
votes
1 answer

Is There a Settings Viewer/Manager for Windows 8 apps?

For testing my roaming and/or local settings, I'd like to be able to clear all the settings. I could do it like so, I guess: App.roamingSettings.Value["SomeVal"] = string.Empty; App.roamingSettings.Value["SomeOtherVal"] =…
0
votes
1 answer

User Account Settings in Android

I want to create a user account on first launch in a wizard and store that in a settings. Something like the account creation wizard in an email app. What is the best way to do? Should I create a layout where I collect these inputs on first launch…
0
votes
1 answer

Windows phone 7 create settings for application in settings section

I'm a newbie in windows phone programming so plz excuse my ignorance. I have an application and I want to create a settings page for it in the phone settings, i.e settings -> myApp -> myAppSettingsPage. Is this possible or non-feasible ? Thanks
NadaNK
  • 782
  • 2
  • 10
  • 26
0
votes
1 answer

Should the potential disadvantage of roaming settings cause me to duplicate them in local settings?

There are two scenarios where storing my app's settings locally would seem preferable to roaming/in the cloud, namely: 1) When the user has (temporarily) lost internet connectivity 2) When/if retrieving roaming settings perceptibly impacts…