settings

How could I export application settings into a portable file? [C#]

I think this is what the asker of this question is getting at, but its hard to tell and there's no accepted answer... I have a C# app built using visual studios application settings. A really useful feature would be the ability to export the settings in one file. Similarly it would be useful to be able to import configuration files exp...

c# SETTINGS architecture

I have several applications that need to read and write application settings. Since one of the apps is a legacy c++ app with hundreds of settings in the registry (and that isn't bound to change) and there are also some settings stored in a proprietary database format I'm wondering how the architecture could be setup to allow a single in...

Launch iPhone setting screen from Application?

Hi all, I am developing an application where i want that upon a press of button iPhone settings screen should open. Is there any restriction from apple to access it? Is it possible or not,If yes then how? ...

Saving class library user settings in winforms .Net 3.5 SP1

A while back, I wrote my own settings provider because I was having problems persisting settings in a class library. (Note - I had no problems persisting settings from an application). Today, I just did a test of persisting class library settings and it worked, without my custom provider. The test is: (1) Create a class library (2) Add...

Is it possible to get widget settings in Tkinter?

It'd be awesome if I could get something like the below. Pseudo Code: U = widget1.SettingsGet() Print U Upon printing U something like this would be returned: widget1(background='green',foreground='grey',boarderwidth=10, relief='flat') It would be really useful to be able to get a widgets settings. So that I can manipulate other ...

How to setup default editor tab in Eclipse?

I'm using the HTML editor resp. the Structured Text Editor in Eclipse very often but one settings gets me going crazy. It always opens in the tab Visual/Source (as seen in the picture below) Is there a possibility to tell Eclipse it should always open this editor in the Source tab? That would help me a lot. ...

Silverlight 4 - Persist user settings to isolated storage

The full .NET platform has a great feature for storing user options in Settings files, which conveniently support saving and loading. Has anyone created an analog to this for Silverlight? I'd like the settings to be stored client side. ...

Android 2.2 Screen Lock Security

Is there a way to find out if a user has the PIN lock or password lock screen security set? I know that you can check Settings.Secure.PATTERN_LOCK_ENABLED to read if the pattern is set. Even a value to read that shows if ANY security is set would be helpful. ...

page setup information in html or page created by asp.net

Hi, I have HTML page of few tables created by ASP.NET and when I do the "Page Setup" option before printing the paper size is already selected as "Letter" and I want that option to be in "A4". I changed the size of the table but its not working. Is there any page setup information I can put in HTML so that "Page Setup" option can take...

how to add a uibarbuttonitem in settings bundle?

I would like to add a uibarbuttonitem in the settings bundle in my app. How to implement this? What's more, I want to implement the function dragging the items of settings bundle in my app to adjust the orders of the items. How to implement it? I find the 'General' of iphone settings bundle has such functions. Thanks for any help. ...

Add settings from another project to app.config

I have written an application in C# with a settings file (which is used to create an app.config file at compile time). This application uses a C# DLL which also has a settings file. I read the following from this post: If you build a project that references your DLL, you would add the same .settings file to that project and those s...

Unable to remove Settings.bundle

My app used to use the Settings.bundle to load settings from the user, but then I changed it to have the settings in the application. I have all the code completed, and it works. The next step is to remove any of the code for the settings.bundle. I have removed the code, and the settings.bundle itself, but when I compile, I still get th...

Separate Settings in Universal iPhone App?

I'm working on an universal iPhone app, but a few user settings don't make as much sense on the iPad. Can I specify a separate Settings.bundle or Root.plist for use on the iPad? Thanks. ...

Customize the CSLA server side initialization

Hi all, I have next problem. We have a huge client-server system and use CSLA to operate with DB data. There are a set of WinForms-based clients and one WCF-based AppServer. We have custom logging subsystem and settings for this subsystem are stored in DB. So on initialization of each side of our system (client application or applicatio...

Change iphone settings based on device capabilities

Is it possible to hide certain application settings in standard Settings application based on current device capabilities? For example user can choose whether to show compass calibration UI or not, but I don't want to show this setting if device does not have a compass (e.g. iPhone 3g). Well, I think that is not possible actually but m...

DirectShow integrated webcam exposure control

Hi, I'm trying to control the exposure settings in a laptop integrated webcam. I can't control it programatically through DirectShow - IAMCameraControl interface returns E_PROP_ID_UNSUPPORTED when I call it with CameraControl_Exposure as the CameraControlProperty. I've successfully changed the exposure settings in different capture d...

Settings Application Implementation - boolean values set to "no" by default.

The question, by itself, implies that the DefaultValue property in my Root.plist file was set to "no". This is unfortunately not true. To verify what my problem is, I am trying to use a section of the iPhone's Settings application. I am using this to show/hide certain on-screen items. By default, the "shown" property was set to "on."...

What Type of Settings File to Implement?

Hey guys, I am making an auto-archiver/backup sort of thing in Python(http://sourceforge.net/projects/frozendirectory/). As of now it uses an ordinary text file to store its small amount of settings(but ever growing). I was thinking of changing it to an XML file so that it would be more flexible/scalable and thus easier to work with in t...

Settings.xml won’t let me change background color?

I've done this before...not sure what i'm doing wrong now I know it's the simplest thing in the world but i just want to make the text of my settings page black and the background white. Any ideas of what i'm doing wrong? my code does nothing. <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schem...

iPhone Settings Menu - creating a list that allows user to add, edit and delete items

I am looking to create a settings menu feature that allows users to add, edit and remove items from a list. In adding an item to the list, the user will then be prompted to add some further sub-data such as name, value etc. The list should only allow one item to be selected. As far as I can see this is similar to, but beyond the capabili...