Questions tagged [user.config]
38 questions
0
votes
1 answer
Config file for websockets on an Apache server
I am completely new to backend web development and have made a project using php, but I now want to use websockets to make everything more efficient. To do so, I am going to use Ratchet. I am running Apache 2.4.33. When I attempt to run my test…

TEEBQNE
- 6,104
- 3
- 20
- 37
0
votes
0 answers
Sections in User Settings c#
I have a C# application which allows user to create multiple profiles. For each profile he can create user settings. So the user can set different values for a given user setting for different profiles.
Example:
Let us say the user has Created 2…

Anoop
- 101
- 1
- 10
0
votes
1 answer
C# Properties wont save
I want to save settings between two sessions.
I change the value, save it, close the program and its still the old one... WHY?
int test = Properties.Settings.Default.mode;
System.Console.WriteLine(test);
…

Daniel Bucher
- 25
- 1
- 6
0
votes
0 answers
Values added to Settings.Default not persisting from one area
Problem: Items added to Settings.Default not persisting after page load.
Desired Functionality: Values added to Settings.Default saved and will load on next use
I have a few different things that are stored in Settings.Default but one area isn't…

B Minster
- 331
- 3
- 16
0
votes
1 answer
checksum of VS settings-file (user.config) - get path or basestream
I am using the internal VS settings functionality. Now I have to ensure, no data is changed outside the designated application, so I want to compute a checksum of the whole xml-file (user.config).
To compute the checksum, I need the path of the…

Findus
- 303
- 1
- 4
- 17
0
votes
1 answer
Deploy user.config file
I'm having problems deploying a config file.
I have a set of default configurations, which are altered at the moment of installation (custom installer class).
But strangely, my settings keep being reset. In VS2005 all settings are defined with…

George Silva
- 3,454
- 10
- 39
- 64
0
votes
1 answer
writing User configuration back to app.config in .net application
I have a windows application. I am writing all user specific settings into user.config.
Now in a new scenario, whatever changes one user does it should reflect to all the users.
For that purpose I thought of writing the settings into app.config…

user2692032
- 771
- 7
- 26
-3
votes
1 answer
C# Issue when reading NET app.config values
I'm trying to read my saved configuration settings back into TextBoxes with
txtMailServer.Text = Properties.Settings.Default.MailServer;
But the text box contents are being prefixed with this text in front of the actual…

M C
- 61
- 7