Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
3answers
16k 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 ...
5
votes
2answers
3k 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. ...
3
votes
2answers
691 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 ...
3
votes
1answer
2k 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 ...
3
votes
3answers
676 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 ...
2
votes
2answers
73 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 ...
2
votes
1answer
246 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 ...
2
votes
6answers
299 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 ...
1
vote
2answers
37 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
1answer
70 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 ...
1
vote
4answers
156 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 ...
1
vote
1answer
1k 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: ...
1
vote
2answers
362 views

C# Settings Rembering Settings

How do I get my program to remember the users settings?
0
votes
0answers
36 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
82 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
75 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 ...
0
votes
3answers
280 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 ...
0
votes
2answers
459 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 ...
0
votes
1answer
704 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.) ...
0
votes
4answers
932 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 ...