Skip to content

Commit 0a7c9a3

Browse files
Merge pull request #15272 from MicrosoftDocs/main
Auto Publish – main to live - 2026-04-20 22:00 UTC
2 parents 0eaee32 + 87888f7 commit 0a7c9a3

7 files changed

Lines changed: 24 additions & 12 deletions

docs/data-tools/connect-to-data-in-an-access-database-windows-forms.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ To use these procedures, you need:
3737
- A Windows Forms or Windows Presentation Foundation (WPF) project
3838
- Either an Access database (`.accdb` file), or an Access 2000-2003 database (`.mdb` file). Follow the procedure that corresponds to your file type.
3939

40-
:::moniker range=">=vs-2022"
41-
4240
## Create a dataset for an .accdb file
4341

4442
Connect to databases created with Microsoft 365, Access 2016, Access 2013, Access 2010, or Access 2007 by using the following procedure.
@@ -47,7 +45,13 @@ Connect to databases created with Microsoft 365, Access 2016, Access 2013, Acces
4745

4846
2. To open the **Data Sources** window, press **Ctrl**+**Q**, enter "data" in the search box, and choose **Data Sources** window. Or on the **View** menu, select **Other Windows** > **Data Sources**. Or on the keyboard, press **Shift**+**Alt**+**D**.
4947

48+
:::moniker range="visualstudio"
49+
![Screenshot of Data Sources in the search box.](../data-tools/media/visualstudio/view-data-sources.png)
50+
:::moniker-end
51+
52+
:::moniker range="vs-2022"
5053
![Screenshot of Data Sources in search box](../data-tools/media/vs-2022/view-data-sources.png)
54+
:::moniker-end
5155

5256
3. In the **Data Sources** window, click **Add New Data Source**.
5357

@@ -92,21 +96,31 @@ Connect to databases created with Microsoft 365, Access 2016, Access 2013, Acces
9296

9397
12. Expand the **Tables** node on the **Choose your Database Objects** page.
9498

99+
:::moniker range="visualstudio"
100+
![Screenshot of the Choose Your Database Objects page.](media/visualstudio/choose-your-database-objects.png)
101+
:::moniker-end
102+
103+
:::moniker range="vs-2022"
95104
![Screenshot of Choose your Database Objects page](media/vs-2022/choose-your-database-objects.png)
105+
:::moniker-end
96106

97107
13. Select the tables or views you want to include in your dataset, and then select **Finish**.
98108

99109
The dataset is added to your project, and the tables and views appear in the **Data Sources** window.
100110

111+
112+
:::moniker range="visualstudio"
113+
![Screenshot of the Data Sources Window, populated with database objects.](media/visualstudio/data-sources-window-populated.png)
114+
:::moniker-end
115+
116+
:::moniker range="vs-2022"
101117
![Screenshot of Data Sources Window, populated with database objects](media/vs-2022/data-sources-window-populated.png)
118+
:::moniker-end
102119

103120
14. On 64-bit machines with the 64-bit Access database engine, you need to ensure that the application runs as a 64-bit application. Open the project properties (press **Alt**+**Enter** or right-click on the project node, and select **Properties**). In the **Build** tab for C#, or the **Compile** tab for Visual Basic, clear the **Prefer 32-bit** checkbox.
104121

105122
The connection string is stored in *app.config*, and in the *Settings.settings* file under **Properties** in Solution Explorer.
106123

107-
:::moniker-end
108-
109-
110124
## Create a dataset for an .mdb file
111125

112126
Connect to databases created with Access 2000-2003 by using the following procedure.
56.1 KB
Loading
16.1 KB
Loading
26.5 KB
Loading

docs/ide/whats-new-visual-studio-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ The following people contributed to the Visual Studio docs during this period. T
246246
**Updated articles**
247247

248248
- [Run a C# program or app in Visual Studio](../get-started/csharp/run-program.md) - Review and update screenshots
249-
- [C# development with Visual Studio](../get-started/csharp/index.yml) - C# Get started landing page - DocKit freshness review
249+
- [C# development with Visual Studio](../get-started/csharp/index.yml) - Review and update
250250
- Review and update for .NET 10
251251
- [Tutorial: Learn to debug Visual Basic code using Visual Studio](../get-started/visual-basic/tutorial-debugger.md)
252252
- [Tutorial: Add code to the picture viewer Windows Forms App (.NET Framework)](../get-started/csharp/tutorial-windows-forms-picture-viewer-code.md)

docs/msbuild/building-multiple-projects-in-parallel-with-msbuild.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: ghogen
66
manager: mijacobs
77
ms.subservice: msbuild
88
ms.topic: concept-article
9-
ms.date: 02/26/2025
9+
ms.date: 04/17/2026
1010
helpviewer_keywords:
1111
- parallel project builds
1212
- building multiple projects in parallel
@@ -29,7 +29,7 @@ To build multiple projects faster, you can use MSBuild to run builds in parallel
2929
3030
## -maxcpucount MSBuild switch
3131

32-
If you use the `-maxcpucount` (`-m`) switch, which was introduced in MSBuild 3.5, MSBuild creates the specified number of *MSBuild.exe* processes that can be run in parallel. These processes are also known as *worker processes*. Each worker process uses a separate core or processor, if any are available, to build a project at the same time as other available processors might be building other projects.
32+
If you use the `-maxcpucount` (`-m`) switch, MSBuild creates the specified number of *MSBuild.exe* processes that can be run in parallel. These processes are also known as *worker processes*. Each worker process uses a separate core or processor, if any are available, to build a project at the same time as other available processors might be building other projects.
3333
For example, setting this switch to a value of `4` causes MSBuild to create four worker processes to build the project.
3434

3535
If you include the `-maxcpucount` switch without specifying a value, MSBuild uses up to the number of processors on the computer.

docs/msbuild/incremental-builds.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: ghogen
66
manager: mijacobs
77
ms.subservice: msbuild
88
ms.topic: concept-article
9-
ms.date: 02/28/2025
9+
ms.date: 04/17/2026
1010
helpviewer_keywords:
1111
- msbuild, incremental builds
1212

@@ -60,9 +60,7 @@ To support incremental compilation, tasks must ensure that the `TaskParameter` a
6060

6161
This code creates the property `Easy`, which has the value `123` whether or not the target is executed or skipped.
6262

63-
Starting in MSBuild 3.5, output inference is performed automatically on item and property groups in a target. `CreateItem` tasks aren't required in a target and should be avoided. Also, `CreateProperty` tasks should be used in a target only to determine whether a target was executed.
64-
65-
Before MSBuild 3.5, you can use the [CreateItem](../msbuild/createitem-task.md) task.
63+
Output inference is performed automatically on item and property groups in a target. `CreateItem` tasks aren't required in a target and should be avoided. Also, `CreateProperty` tasks should be used in a target only to determine whether a target was executed.
6664

6765
## Determine whether a target is run
6866

0 commit comments

Comments
 (0)