The my.settings tag has no wiki summary.
4
votes
1answer
219 views
Best Way in VB.Net to Use Generics for My.Settings Persistance?
Can you improve upon this generic?
I'm trying to reduce code bloat, reduce errors and simplify codebehind by use of generics. In this case I'm applying generics to declaration of persistable ...
2
votes
0answers
124 views
My.Settings exception on some users PC's
I am saving an array of objects to My.Settings, which has always (in my experience) worked. However having worked it into a recent application, I am getting the following exception on some users PC's ...
2
votes
1answer
273 views
Best way to bind My.Settings to a datagridview, so end user can modify?
How can we databind a datagridview to some of the My.Settings (user scoped) properties so the user can edit the values? This must be to a datagridview. I know we can bind to My.Settings in a form with ...
1
vote
3answers
126 views
Where are My.Settings saved in VB 2010 .NET?
Are My.Settings values saved in the program itself or do they get stored in the registry? So, for example, if I set a My.Settings value with a program, then I copy the program itself to another PC - ...
1
vote
2answers
2k views
How to save ComboBox items in My.Settings, and display/edit with textbox
I'm trying to do the following:
Store items from ComboBox in My.Settings (datatype doesn't matter, but need suggestions).
Retrieve these items to populate a ComboBox on formload.
Also display these ...
1
vote
3answers
1k views
Adding Editor / EditorAttribute at Run-time (Dynamically) to an Object's Property
How to add the EditorAttribute (Editor) to an object's property at run-time?
I have My.Settings.ExcludeFiles, which is created by the settings designer as Public Property ExcludedFiles() As ...
0
votes
0answers
73 views
VB convert Vis Studio from 2003 to 2010 my.settings error
Trying to convert an VB application written in Vis Studion 2003 to 2010 and am stuck on My.Settings. I get underlines for the 'My.Settings' code in the 2 lines. Here is the code in the code behind ...
0
votes
2answers
149 views
How to change application config file name (AppName.exe.config)?
I use My.Settings object in VB.NET, which automatically gets application setting from AppName.exe.config file.
How can I store config in file with other name, not AppName.exe.config?
I have several ...
0
votes
1answer
116 views
my.settings and descriptions? And getting them into a propertygrid?
I recently learned of the propertygrid object usage with the my.settings object for a project. I like this very much and I was wondering if there is a way to include descriptions with my settings so ...
0
votes
2answers
318 views
How to access MyProject.MySettings.Default.SomeSetting from xaml?
I have defined a StringCollection in the Project Settings.
I want to use the values in a ComboBox.
Is there a way to access it xamly?
I tried:
<CollectionViewSource Source="{x:Static ...