VisualStudio 2010 Settings Page - Collection Settings
Posted
by Ed Eichman
on Stack Overflow
See other posts from Stack Overflow
or by Ed Eichman
Published on 2010-05-27T07:59:29Z
Indexed on
2010/05/27
8:01 UTC
Read the original article
Hit count: 599
- I have a list of Filemaker database names
- Each DB name has a list of field/attribute pairs associated with it
- I have a windows form application in C# 4.0 (vs2010) that wants to use the above data
- I would like to maintain the list either in the Visual Studio settings page, or in one of the standard visual studio settings files using the standard .NET settings calls
- I would like to avoid writing my own custom settings, xml, xds (to avoid the "Could not find schema information for the element/attribute " errors)
- I just have a slightly complicated INI file! I don't want to complicate my life!
Do any easy solutions exist?
Unless someone has a brighter idea, I am simply going to write string settings with names that indicate it's a FM DB (e.g. "fmdbAddresses"), and values that concat my field/attribute pairs (e.g. "gUserResult=skipField|gAddressID=convertToInt|gAddressID=uniqueIx")
© Stack Overflow or respective owner