Mapping properties to a key in configuration file using dynamic properties

Mapping properties to a key in configuration file using dynamic properties

This tip was submitted to the VS.NET Info Center by member Thomson Alexander. Please let other users know how useful it is by rating it below. Do you have a tip or code of your own you'd like to share? Submit it here.

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.


This is of great help when you need to customize an application for a particular user or environment. No code change or compilation is required -- the only thing you have to do is to edit the app.config file.

For example, to change the caption or title of a form "Products" to "Product Details," you would do the following:

Step 1: In the property window, see dyanamic properties. Under this category, click on the advanced property button. A new window will display. Check the text property, and, in key mapping, type any name or leave as default. Then click OK.

Step 2: Now the text property is displayed under dynamic properties. Click in the button along with text property. Check "map property to a key in configuration file." Click OK.

Step 3: Go to app.config file. You can see the entry <add key="Form1.Text" value="Products" />. To change the caption, modify the value property to "Product Details" before starting the application. Any change in the app.config is immediatly reflected in the application.

This was first published in May 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.