--- title: "How To: Create a New Setting at Design Time" description: Learn how to create a new Windows Forms setting at design time by using the Settings designer in Visual Studio. ms.date: "03/30/2017" helpviewer_keywords: - "application settings [Windows Forms], design time" - "application settings [Windows Forms], creating" ms.assetid: c5d60a66-6507-462f-a81f-e3bc0a804e16 --- # How To: Create a new setting at design time You can create a new setting at design time by using the Settings designer in Visual Studio. The Settings designer is a grid-style interface that allows you to create new settings and specify properties for those settings. You must specify Name, Value, Type and Scope for your new settings. Once a setting is created, it is accessible in code. ## Create a new setting at design time in C\# 1. Open Visual Studio. 2. In **Solution Explorer**, expand the **Properties** node of your project. 3. Double-click the .settings file in which you want to add a new setting. The default name for this file is Settings.settings. 4. In the Settings designer, set the **Name**, **Value**, **Type**, and **Scope** for your setting. Each row represents a single setting. ## Create a new setting at design time in Visual Basic 1. Open Visual Studio. 2. In **Solution Explorer**, right-click your project node and choose **Properties**. 3. In the **Properties** page, select the **Settings** tab. 4. In the Settings designer, set the **Name**, **Value**, **Type**, and **Scope** for your setting. Each row represents a single setting. ## See also - [Using Application Settings and User Settings](using-application-settings-and-user-settings.md) - [Application Settings Overview](application-settings-overview.md) - [How To: Change the Value of an Existing Setting at Design Time](how-to-change-the-value-of-an-existing-setting-at-design-time.md)