Skip to content

Commit 5c4def9

Browse files
Merge pull request #13762 from dksimpson/us360354-dks-8
Freshness edit: Data Tools and MSBuild articles
2 parents fb47d5d + 9b11a0c commit 5c4def9

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/data-tools/create-a-simple-data-application-by-using-adonet.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Create the sample database by following these steps:
6565

6666
Visual Studio creates the project and several files, including an empty Windows form named **Form1**.
6767

68-
1. In Solution Explorer, add two Windows forms to your project so that it has a total of three forms, and give them the following names:
68+
1. In **Solution Explorer**, add two Windows forms to your project so that it has a total of three forms, and give them the following names:
6969

7070
- **Navigation**
7171

@@ -135,7 +135,7 @@ To find the connection string:
135135

136136
To store the connection string in your project:
137137

138-
1. In Solution Explorer, do one of the following steps, depending on your project type:
138+
1. In **Solution Explorer**, do one of the following steps, depending on your project type:
139139

140140
- For a C# project, expand the **Properties** node under the project, and then open the **Settings.settings** file.
141141

@@ -172,13 +172,13 @@ The Navigation form opens when you run the application and includes the followin
172172

173173
For C# projects:
174174

175-
1. In Solution Explorer, open **Program.cs**.
175+
1. In **Solution Explorer**, open **Program.cs**.
176176

177177
1. Change the `Application.Run` line to: `Application.Run(new Navigation());`
178178

179179
For Visual Basic projects:
180180

181-
1. In Solution Explorer, right-click the project and choose **Properties**.
181+
1. In **Solution Explorer**, right-click the project and choose **Properties**.
182182

183183
1. In the Project Designer, select the **Application** tab, and then select **Navigation** in the **Startup object** list.
184184

docs/data-tools/create-and-configure-datasets-in-visual-studio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ You can create a typed <xref:System.Data.DataSet> class in Visual Studio at desi
5353

5454
1. Select **Finish**.
5555

56-
The dataset appears as a node in Solution Explorer.
56+
The dataset appears as a node in **Solution Explorer**.
5757

5858
:::image type="content" source="../data-tools/media/vs-2022/dataset-in-solution-explorer.png" alt-text="Screenshot that shows how the dataSet appears in Solution Explorer.":::
5959

60-
1. Double-click the dataset node in Solution Explorer.
60+
1. Double-click the dataset node in **Solution Explorer**.
6161

6262
The dataset opens in the Dataset Designer.
6363

@@ -85,7 +85,7 @@ You can create a typed <xref:System.Data.DataSet> class in Visual Studio at desi
8585

8686
This procedure shows how to add a table from the same database that you used to first create the dataset:
8787

88-
1. Double-click the dataset node in Solution Explorer.
88+
1. Double-click the dataset node in **Solution Explorer**.
8989

9090
The dataset opens in the Dataset Designer.
9191

docs/data-tools/how-to-save-and-edit-connection-strings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can save a database connection string in application settings or in a datase
3636

3737
To save a connection string directly in application settings, follow these steps:
3838

39-
1. In Solution Explorer, do one of the following steps, depending on your project type:
39+
1. In **Solution Explorer**, do one of the following steps, depending on your project type:
4040

4141
- For a C# project, expand the project and double-click the **Properties** node.
4242
- For a Visual Basic project, expand the project and double-click the **My Project** node.
@@ -69,7 +69,7 @@ You can edit an existing database connection string in application settings or i
6969

7070
To edit a connection string in application settings:
7171

72-
1. In Solution Explorer, do one of the following steps, depending on your project type:
72+
1. In **Solution Explorer**, do one of the following steps, depending on your project type:
7373

7474
- For a C# project, expand the project and double-click the **Properties** node.
7575
- For a Visual Basic project, expand the project and double-click the **My Project** node.
@@ -88,7 +88,7 @@ You can modify connection information for a TableAdapter or query in a dataset.
8888

8989
To edit a connection string in a dataset, follow these steps:
9090

91-
1. In Solution Explorer, double-click the dataset (*.xsd* file) that has the connection you want to edit.
91+
1. In **Solution Explorer**, double-click the dataset (*.xsd* file) that has the connection you want to edit.
9292

9393
1. Select the **TableAdapter** or query that has the connection you want to edit.
9494

0 commit comments

Comments
 (0)