0
votes
3answers
40 views
How to save default context settings in c#?
Hello,
could somebody tell me why I can not save dynamic data in Settings.Default.Context?
My code:
Settings.Default.Context.Add("myKey", "myValue");
Settings.Default.Save();
M …
3
votes
5answers
77 views
How to store int[] array in application Settings
Hi, I'm creating a simple windows Forms application using C# express 2008. I'm an experienced C++ developer, but I am pretty much brand new to C# and .NET.
I'm currently storing s …
0
votes
5answers
67 views
asp.net application default file Index.aspx
how can i make it that when i go to (for example) http://localhost:60288/ it does not show me a directory listing but rather opens the Index.aspx page? This works with http://local …
2
votes
1answer
43 views
Losing VB.NET “My.Settings” with each new ClickOnce deployment release
I am using the built-in My.Settings functionality in VB.NET to save application settings.
This is very convenient but I notice that each time I release a new version, the settings …
1
vote
1answer
45 views
C# Way to serialize List<string> in settings containing any character (Regex/xml)
I am looking for a neat/clean way to store a list of strings into a C# settings file. As far as I can work out, you can't store List objects into these settings, so basically it n …
-2
votes
2answers
210 views
+100
Change iPhone settings from an app.
Does anyone knows how to change the iPhone settings from interior of an app? For example: close the WiFi, disable 3G, change the sound volume and so on?
Apple is changing settings …
0
votes
2answers
25 views
Storing key-value pair settings in silverlight
I have a class in silverlight that I would like to store to disk. It contains a couple of basic CLR objects - strings and integers, and a WPF BitmapImage.
What is the best way to …
1
vote
3answers
110 views
Rails: Best practice to store user settings?
Hi,
I'm wondering what the best way is to store user settings? For a web 2.0 app I want users to be able to select certain settings. At the moment is it only when to receive email …
1
vote
2answers
74 views
How do I get around application scope settings being read-only?
What use are they if they cannot be altered from their default values anyway? Rhetorical question.
First, what's the best way to circumvent the Settings system and write to the ap …
4
votes
5answers
160 views
Global variables v Settings in C#
I have read in various places that having variables with global scope, i.e. a public static class with static members, is considered going against the philosophy of OO, and is not …
1
vote
1answer
33 views
How to share settings between different versions of the same software
I am deriving from ApplicationSettingsBase to store our users settings, however when the build number gets incremented the app uses a new settings folder, and so the old settings a …
1
vote
6answers
163 views
Why do so many apps/frameworks keep their configuration files in an un-executed format?
Many frameworks keep their configuration files in a language different from the rest of the program. Eg, Appengine keeps the configuration in yaml format. to compare, DJango settin …
0
votes
2answers
71 views
Can I access the __dict__ object for the local scope?
Here is my situation...
I am trying to dynamically generate a bunch of stuff in my settings.py file on a django site.
I am setting up several sites, (via sites framework) and I w …
0
votes
2answers
18 views
Setting network options in a RCP Application
We have a RCP application that does sometimes get some data from URLs in the internet. Our customer uses a Proxy-Server, and we can't get to the information we need unless the netw …
0
votes
3answers
46 views
Server is not loading/compiling the latest version of code in Eclipse?
A few days back, while the built-in server (Tomcat v5.5) in eclipse was running, and while I was modifying the code, the server used to recompile and restart itself. I've gotten in …
