Tagged Questions
0
votes
1answer
58 views
Business logic shared by ASP.NET / WinForms: find the location of the assembly to access relative files to it
I'm in the midst of refactoring some 'inherited' business logic code that for the ASP.NET side needs to be initialized with an absolute path, but on the WinForms / WPF side only with a relative path ...
0
votes
0answers
102 views
Attributes in custom configuration element collection
I have custom configuration section and configuration element collection inside it in my Windows Forms application:
Imports System.Configuration
Namespace Configuration
Friend Class ...
0
votes
0answers
62 views
Writing common code for settings.settings
I have the need to save user options&settings for several applications. I understand that the best way to save user settings is to use "Settings" in the form of Settings.Default["SomeProperty"] = ...
2
votes
1answer
169 views
Where the Devil is my Applications .config file?
All, I have a large application. This application uses a .config file to deal with its various settings. This is fine in development, and the .config file is found and working happily in the ...
0
votes
0answers
52 views
Winforms usersetting file with dynamic keyname
Winform applications usually use Application Settings that
are created with the Application Settings Designer. This is a perfect
solution if you have a fixed set of key value pairs.
However i need ...
0
votes
0answers
69 views
Shared application settings with special access right - how to
I've an application composed by 2 executable (a client application and a configuration utility).
The configuration utility store somme settings in an XML file that are used by the application.
for ...
0
votes
2answers
343 views
Accessing App.exe.config File in Special Folders
All, I am doing the usual thing of writing application settings to the 'application.exe.config' file using
Properties.Settings.Default.SomeSetting = someVal;
Properties.Settings.Default.Save();
I ...
2
votes
2answers
277 views
Winforms - Execute a function when any form is loaded into the designer
I'm working in winforms, and I'm attempting to link in some events any time a form\component\usercontrol is shown in the designer, i'm trying to link in some static events that load preferences from ...
0
votes
1answer
796 views
Save a new connection string from within a windows forms app?
I'm writing a Windows Forms app, VS2010, NET Framework 4.0, coding in VB. I'm using the Microsoft Data Connection Configuration dialog in my app to choose a data source. It seems to work fine and ...
2
votes
1answer
3k views
How can i update app.config connectionstring Datasource value in C#?
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
...
2
votes
1answer
202 views
ConfigurationManager looking for different files on different systems
I'm using configuration manager in the simplest way:
Read:
ConfigurationManager.AppSettings["Foo"]
Write:
Configuration config = ...
0
votes
0answers
380 views
My.Settings not saving after install
My application is not saving users settings after I install it. When I test my app in debug or release mode it works fine. However after compiling, linking and installing the My.Settings.Save() does ...
3
votes
2answers
231 views
File permissions across user profiles
I am using ClickOnce deployment for a Windows Forms application and I need configuration information on a machine basis that persists across deployments and across user profiles. As such, per user ...
0
votes
1answer
914 views
.NET Compact Framework config files
I'm developing a Windows Mobile 5.0 or above WinForm application using .NET Compact Framework 2.0 SP2 and C#.
I need to use a config file to store a Web Service's URL and other information encrypted.
...
1
vote
1answer
1k views
Winforms: Write app.settings during Setup
I've battled with modifying Configuration settings in the App.config file in the past, and gave up any hope of making it work. Now again, I find myself in the same shoes, but this time determined to ...
144
votes
7answers
85k views
Best practice to save application settings in a Windows Forms Application
What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. This path can be modified by the user, by using the options form I ...
