The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
93 views

Saving user settings in Metro app using VB.NET

How to saving user settings in Metro app using VB.NET? I want to save the password at first time open the metro apps.And open the metro apps need password to access.
3
votes
1answer
104 views

How can I distinguish user settings by name in C#?

Following CodeProject and StackOverflow.105932 (and a few others, e.g., StackOverflow.1873658 and MSDN articles) I have a main form whose Size, Location and WindowState are saved in and read from ...
0
votes
0answers
42 views

How do I enforce a shared naming convention for my test classes using Resharper and layers?

Resharper 6.1's concept of layers has been useful to share various settings such as code formatting, quick-fixes and so on. I have also used it to create a convention that all test classes should end ...
1
vote
5answers
465 views

User Settings - Android

How to make in app changes persist so that when app relaunches all settings remain same(like if from app i have selected vibration then when app is not running if my phone is ringer mode when app ...
1
vote
1answer
619 views

Set back UIScreen Brightness to user setting

in some of the views of my iPhone app I set the screen brightness pragmatically like: [[UIScreen mainScreen] setBrightness:1.0]; then on -(void)viewWillDisappear:(BOOL)animated { } I will ...
4
votes
2answers
884 views

How do I get the location of the user.config file in programmatically?

I'd like to display the location of the user.config file in my windows forms application so a user can easily find it. I understand how the path is created thanks to: Can I control the location of ...
1
vote
0answers
311 views

Managing (add/update) user specific configuration setting in WPF application

I want to manage user specific configuration settings in WPF application configuration file (app.config). While setup (.msi using custom action) I ask user to enter some of the configuration ...
0
votes
1answer
401 views

Custom DateTimePicker value isn't saved in Application Settings

UPDATED : I want to save a Custom DateTimePicker.Value in my Application Settings. The custom format is : dd/MM/yyyy hh:mm:ss, instead of dd/MM/yyyy The field i've created in the application ...
0
votes
2answers
781 views

Database user table design, for specific scenario

I know this question has been asked and answered many times, and I've spent a decent amount of time reading through the following questions: Database table structure for user settings How to handle ...
2
votes
2answers
126 views

How to limit editing to specific users who created the post in ruby on rails?

I have created a message posting feature using ruby the problem I now have is the function editing the post is available but it is accessible by ever single user no matter who posted the original ...
0
votes
3answers
563 views

N2cms add settings page

I want to add some settings which the admin of the site can change. First idea came to my mind is to create an N2 page called settings, and every property of this page is single setting, and each ...
2
votes
1answer
639 views

.NET Application/User Settings Issues

Could someone please explain application and user settings, and their differences to me? I've got a C# application that only ONE person will use. There are preferences the user can set within the ...
1
vote
1answer
128 views

Is there a limit on a user setting size in .NET application?

I would like to serialize my object with many values as string(xml) into user settings. Is there a limit on how large a "string" user setting can be in a .NET application? I am extending ...
3
votes
2answers
1k views

How do I supply extra info to IApplicationSettingsProvider class?

Perhaps this question has been asked before in a different way, but I haven’t been able to find it. I have one or more plugin adapter assemblies in my application all having the type IPlugin, for ...
6
votes
1answer
5k views

How to Write to a User.Config file through ConfigurationManager?

I'm trying to persist user settings to a configuration file using ConfigurationManager. I want to scope these settings to the user only, because application changes can't be saved on Vista/Win 7 ...
1
vote
4answers
211 views

Is there a way to tell .NET where to look for the user settings file?

Basically multiple instances of our application will be launched but they need to have separate user settings. We currently have use "user settings" for that, and it works fine for a single instance ...
7
votes
2answers
9k views

How to load a separate Application Settings file dynamically and merge with current settings?

There are questions pertaining to reading settings from a separate config file and others similar to it, but my question is specific to application property settings (i.e. ...
0
votes
2answers
920 views

Click-Once Deployment Overwriting User Settings

Click-once deployments are suppose to maintain user settings, but on this one application we have the user settings are overwritten to the Visual Studio default every time we publish an update. Any ...
1
vote
1answer
2k views

How to enable user settings to libraries used by a web project hosted WCF service?

By default a IIS hosted WCF service can't use libraries that uses user scope settings. The only scope that it accepts is the Application scope. When you try to do otherwise it throws an exception: ...
0
votes
1answer
985 views

Application/User Settings with Roaming Profiles

Hi Guys any help would be much appreciated. We have an application that’s installed at several locations but we are having an issue at one particular site. In short the application settings (My.) ...
2
votes
6answers
345 views

How to have a program option set by an admistrator that the user can't change?

My application needs to read an option on startup to check if it should start in read-only mode. The option should not be allowed to be changed by the user. I usually do this now using a value set ...
0
votes
4answers
2k views

How to store a file in LDAP?

I'm looking for the best way to store a configuration file in an LDAP server. My application used to save the user settings in an xml file. The user logins have been centralized in an LDAP server. The ...
56
votes
3answers
26k views

Can I control the location of .NET user settings to avoid losing settings on application upgrade?

I'm trying to customize the location of the user.config file. Currently it's stored with a hash and version number %AppData%\[CompanyName]\[ExeName]_Url_[some_hash]\[Version]\ I want to it be ...
1
vote
2answers
489 views

C# Settings Rembering Settings

How do I get my program to remember the users settings?
5
votes
3answers
791 views

Place to store user settings in Sharepoint besides profiles

Is user profiles an appropriate place to store things like number of items per page in a custom grid user selected? (I you can store it in the view, but it won't be per user this way). My first ...