settings

Editing a model in Apple's Settings style

Hi there, I woud like to implement some editing mechanism for an iPhone application, that is I want the user to be able to edit an instance of my model. The model contains two types of data: The first is just an NSString where the user can write virtually anything he likes. The second one is a selection where he is able to pick one from...

Settings.settings and <legacyUnhandledExceptionPolicy enabled="1"/>

Hi, I have a C#/.NET Winforms application which has some settings stored using A '.settings' file. So the configuration is edited by right-clicking the project in "Solution Explorer" and selecting "Properties->Settings". However, I also need to be able to catch exceptions thrown by a SerialPort object inside the application. I found a ...

looking for a remote configuration solution

I'm writing a large distributed application, i want to be able to configure all my components remotely. is there a framework available to help me with this? using .net 3.5 ...

Terminal service regional setting

Hi, Is it possible for the terminal service to automatically change its own regional settings based from the settings of user who instantiate the remote connection ? For example, a TS setup is in French(Switzerland), then I'm on English(US), if I start a remote session the TS will automatically inherit my regional settings. ...

How to read a configuration file from another application into an instance based on SettingsBase?

I have an application written in c# 4.0 which uses the default Properties.Settings saved in a .config file alongside the exe file. Then I have a new administration application to configure the settings for the other application. I have figured out that i can use one of these to access the config file: var map = new ExeConfigurationFil...

.NET settings.settings Variable Confusion

Hi, I'm new to WPF applications and I am dealing with an app that is storing some simple variables in settings.settings via the grid GUI in Visual Studio. The problem is that somehow two boolean variables have been set to true, and I can't seem to reset them. If I go back to the setting GUI, I can see that the value is set to "False", b...

Remembering which display application was closed on

Fairly straightforward question: How can I tell a VB6 application to remember what display it was closed on, and then when the application is launched again, to display the main form on that monitor? ...

Why am I unable to select a custom Type for a setting from the same project/assembly as the settings file?

I am trying to set the type of an application setting property to a custom enum type I have defined in my assembly (call this Project A) In the settings browser I click browse and am presented with the "Select a Type" dialog box. And the Types defined in Project A are not seem to be available to me. Yet types are available from other p...

MonoDevelop compiling options

Hi! I'm developing applications in MonoDevelop for the first time today, and I just need to know how to compile my projects for mac, NOT windows. When I click "Compile" after right clicking on my project, I always get an exe file. (Which, when tested, DOES work as programmed) That's all fine, and good, but being a mac user, I could real...

Custom UITableViewCell for Settings-like application?

I'd like to have a settings view in my app. I want to have things like UILabels, UISwitches etc. (Like in the Settings app.) How can I go about doing that? Can I just replace the detailView with the required view, or is there more to it then that? That may not work because I need to be able to set and get text values too. ...