From 30d79dd7d115186978fc6bebe9e66a63be89ed5a Mon Sep 17 00:00:00 2001 From: eriawan Date: Sun, 1 Nov 2020 03:36:02 +0700 Subject: [PATCH 1/7] update .NET Framework to .NET in visual-basic/developing-apps --- .../developing-apps/creating-and-using-components.md | 4 ++-- ...ing-to-the-registry-using-the-microsoft-win32-namespace.md | 2 +- .../reading-from-and-writing-to-the-registry.md | 4 ++-- .../walkthrough-filtering-my-application-log-output.md | 2 +- docs/visual-basic/developing-apps/windows-forms/index.md | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/visual-basic/developing-apps/creating-and-using-components.md b/docs/visual-basic/developing-apps/creating-and-using-components.md index 433807c5cf373..f80e2262fa2e9 100644 --- a/docs/visual-basic/developing-apps/creating-and-using-components.md +++ b/docs/visual-basic/developing-apps/creating-and-using-components.md @@ -7,9 +7,9 @@ ms.assetid: ee6a4156-73f7-4e9b-8e01-c74c4798b65c --- # Creating and Using Components in Visual Basic -A *component* is a class that implements the interface or that derives directly or indirectly from a class that implements . A .NET Framework component is an object that is reusable, can interact with other objects, and provides control over external resources and design-time support. +A *component* is a class that implements the interface or that derives directly or indirectly from a class that implements . A .NET component is an object that is reusable, can interact with other objects, and provides control over external resources and design-time support. - An important feature of components is that they are designable, which means that a class that is a component can be used in the Visual Studio Integrated Development Environment. A component can be added to the Toolbox, dragged and dropped onto a form, and manipulated on a design surface. Notice that base design-time support for components is built into the .NET Framework; a component developer does not have to do any additional work to take advantage of the base design-time functionality. + An important feature of components is that they are designable, which means that a class that is a component can be used in the Visual Studio Integrated Development Environment. A component can be added to the Toolbox, dragged and dropped onto a form, and manipulated on a design surface. Notice that base design-time support for components is built into the .NET; a component developer does not have to do any additional work to take advantage of the base design-time functionality. A *control* is similar to a component, as both are designable. However, a control provides a user interface, while a component does not. A control must derive from one of the base control classes: or . diff --git a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md index 8eb180bad0554..292c4ae2cd988 100644 --- a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md +++ b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md @@ -7,7 +7,7 @@ ms.assetid: 4a0dcce0-c27b-4199-baa8-ee4528da6a56 --- # Reading from and Writing to the Registry Using the Microsoft.Win32 Namespace (Visual Basic) -Although `My.Computer.Registry` should cover your basic needs when programming against the registry, you can also use the and classes in the namespace of the .NET Framework. +Although `My.Computer.Registry` should cover your basic needs when programming against the registry, you can also use the and classes in the namespace of the .NET. ## Keys in the Registry Class diff --git a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md index b0614a31fc116..07950984d0ccb 100644 --- a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md +++ b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md @@ -11,7 +11,7 @@ ms.assetid: a13da106-185b-41d7-b23c-416da65e21e4 This topic describes task and conceptual topics that are associated with the registry. - When programming in Visual Basic, you can choose to access the registry by means of either the functions provided by Visual Basic or the registry classes of the .NET Framework. The registry hosts information from the operating system as well as information from applications hosted on the machine. Working with the registry may compromise security by allowing inappropriate access to system resources or protected information. + When programming in Visual Basic, you can choose to access the registry by means of either the functions provided by Visual Basic or the registry classes of the .NET. The registry hosts information from the operating system as well as information from applications hosted on the machine. Working with the registry may compromise security by allowing inappropriate access to system resources or protected information. ## In This Section @@ -25,7 +25,7 @@ This topic describes task and conceptual topics that are associated with the reg Describes how to use the `DeleteSubKey` method of the `My.Computer.Registry.CurrentUser` property to delete a registry key. [Reading from and Writing to the Registry Using the Microsoft.Win32 Namespace](reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md) - Describes how to use the `Registry` and `RegistryKey` classes of the .NET Framework to access the registry. + Describes how to use the `Registry` and `RegistryKey` classes of the .NET to access the registry. [Security and the Registry](security-and-the-registry.md) Discusses security issues involving the registry. diff --git a/docs/visual-basic/developing-apps/programming/log-info/walkthrough-filtering-my-application-log-output.md b/docs/visual-basic/developing-apps/programming/log-info/walkthrough-filtering-my-application-log-output.md index 8fdbd78e1cdf1..25f4786a45d93 100644 --- a/docs/visual-basic/developing-apps/programming/log-info/walkthrough-filtering-my-application-log-output.md +++ b/docs/visual-basic/developing-apps/programming/log-info/walkthrough-filtering-my-application-log-output.md @@ -132,7 +132,7 @@ This table explains the log output shown in the previous example: with the defau 9. Change the value of the `value` attribute back to "Information". > [!NOTE] - > The `DefaultSwitch` switch setting controls only `My.Application.Log`. It does not change how the .NET Framework and classes behave. + > The `DefaultSwitch` switch setting controls only `My.Application.Log`. It does not change how the .NET and classes behave. ## Individual Filtering For My.Application.Log Listeners diff --git a/docs/visual-basic/developing-apps/windows-forms/index.md b/docs/visual-basic/developing-apps/windows-forms/index.md index d52761355ec64..e6909bd07990a 100644 --- a/docs/visual-basic/developing-apps/windows-forms/index.md +++ b/docs/visual-basic/developing-apps/windows-forms/index.md @@ -22,7 +22,7 @@ You can create Windows Forms and Windows service applications with Visual Studio ## Building Rich, Interactive User Interfaces -Windows Forms is the smart-client component of the .NET Framework, a set of managed libraries that enable common application tasks such as reading and writing to the file system. Using a development environment like Visual Studio, you can create Windows Forms applications that display information, request input from users, and communicate with remote computers over a network. +Windows Forms is the smart-client component of the .NET Framework and .NET Core (since .NET Core 3.0), a set of managed libraries that enable common application tasks such as reading and writing to the file system. Using a development environment like Visual Studio, you can create Windows Forms applications that display information, request input from users, and communicate with remote computers over a network. In Windows Forms, a form is a visual surface on which you display information to the user. You commonly build Windows Forms applications by placing controls on forms and developing responses to user actions, such as mouse clicks or key presses. A *control* is a discrete user interface (UI) element that displays data or accepts data input. @@ -91,7 +91,7 @@ For a full introduction to ClickOnce, see [ClickOnce Security and Deployment](/v ## Other Controls and Features -There are many other features in Windows Forms that make implementing common tasks fast and easy, such as support for creating dialog boxes, printing, adding Help and documentation, and localizing your application to multiple languages. In addition, Windows Forms relies on the robust security system of the .NET Framework, enabling you to release more secure applications to your customers. +There are many other features in Windows Forms that make implementing common tasks fast and easy, such as support for creating dialog boxes, printing, adding Help and documentation, and localizing your application to multiple languages. In addition, Windows Forms relies on the robust security system of the .NET, enabling you to release more secure applications to your customers. For step-by-step information about using these features, see the following Help topics: From 9d05e0165b2c3aaa79762f60b2f3f75101ef6313 Mon Sep 17 00:00:00 2001 From: Eriawan Kusumawardhono Date: Tue, 3 Nov 2020 00:46:33 +0700 Subject: [PATCH 2/7] Update docs/visual-basic/developing-apps/creating-and-using-components.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- .../developing-apps/creating-and-using-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visual-basic/developing-apps/creating-and-using-components.md b/docs/visual-basic/developing-apps/creating-and-using-components.md index f80e2262fa2e9..0a78a0baa71f5 100644 --- a/docs/visual-basic/developing-apps/creating-and-using-components.md +++ b/docs/visual-basic/developing-apps/creating-and-using-components.md @@ -9,7 +9,7 @@ ms.assetid: ee6a4156-73f7-4e9b-8e01-c74c4798b65c A *component* is a class that implements the interface or that derives directly or indirectly from a class that implements . A .NET component is an object that is reusable, can interact with other objects, and provides control over external resources and design-time support. - An important feature of components is that they are designable, which means that a class that is a component can be used in the Visual Studio Integrated Development Environment. A component can be added to the Toolbox, dragged and dropped onto a form, and manipulated on a design surface. Notice that base design-time support for components is built into the .NET; a component developer does not have to do any additional work to take advantage of the base design-time functionality. + An important feature of components is that they are designable, which means that a class that is a component can be used in the Visual Studio Integrated Development Environment. A component can be added to the Toolbox, dragged and dropped onto a form, and manipulated on a design surface. Base design-time support for components is built into .NET. A component developer does not have to do any additional work to take advantage of the base design-time functionality. A *control* is similar to a component, as both are designable. However, a control provides a user interface, while a component does not. A control must derive from one of the base control classes: or . From 18361d18cee5536eeb0b9bf4590e29f729f2eb17 Mon Sep 17 00:00:00 2001 From: Eriawan Kusumawardhono Date: Tue, 3 Nov 2020 00:46:51 +0700 Subject: [PATCH 3/7] Update docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- ...iting-to-the-registry-using-the-microsoft-win32-namespace.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md index 292c4ae2cd988..0dc5434b18021 100644 --- a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md +++ b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md @@ -7,7 +7,7 @@ ms.assetid: 4a0dcce0-c27b-4199-baa8-ee4528da6a56 --- # Reading from and Writing to the Registry Using the Microsoft.Win32 Namespace (Visual Basic) -Although `My.Computer.Registry` should cover your basic needs when programming against the registry, you can also use the and classes in the namespace of the .NET. +Although `My.Computer.Registry` should cover your basic needs when programming against the registry, you can also use the and classes in the namespace of .NET. ## Keys in the Registry Class From a3d0c6a4964b2f97617447254afd09b39db8d939 Mon Sep 17 00:00:00 2001 From: Eriawan Kusumawardhono Date: Tue, 3 Nov 2020 00:47:06 +0700 Subject: [PATCH 4/7] Update docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- .../reading-from-and-writing-to-the-registry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md index 07950984d0ccb..ec176d109b9e3 100644 --- a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md +++ b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md @@ -11,7 +11,7 @@ ms.assetid: a13da106-185b-41d7-b23c-416da65e21e4 This topic describes task and conceptual topics that are associated with the registry. - When programming in Visual Basic, you can choose to access the registry by means of either the functions provided by Visual Basic or the registry classes of the .NET. The registry hosts information from the operating system as well as information from applications hosted on the machine. Working with the registry may compromise security by allowing inappropriate access to system resources or protected information. + When programming in Visual Basic, you can choose to access the registry by means of either the functions provided by Visual Basic or the registry classes of .NET. The registry hosts information from the operating system as well as information from applications hosted on the machine. Working with the registry may compromise security by allowing inappropriate access to system resources or protected information. ## In This Section From d33599be480cbaa8bbfa287a5a74d1e163152041 Mon Sep 17 00:00:00 2001 From: Eriawan Kusumawardhono Date: Tue, 3 Nov 2020 00:47:25 +0700 Subject: [PATCH 5/7] Update docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- .../reading-from-and-writing-to-the-registry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md index ec176d109b9e3..452825ae0c0df 100644 --- a/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md +++ b/docs/visual-basic/developing-apps/programming/computer-resources/reading-from-and-writing-to-the-registry.md @@ -25,7 +25,7 @@ This topic describes task and conceptual topics that are associated with the reg Describes how to use the `DeleteSubKey` method of the `My.Computer.Registry.CurrentUser` property to delete a registry key. [Reading from and Writing to the Registry Using the Microsoft.Win32 Namespace](reading-from-and-writing-to-the-registry-using-the-microsoft-win32-namespace.md) - Describes how to use the `Registry` and `RegistryKey` classes of the .NET to access the registry. + Describes how to use the `Registry` and `RegistryKey` classes of .NET to access the registry. [Security and the Registry](security-and-the-registry.md) Discusses security issues involving the registry. From eb3031047c858ef43f1c2680423cb945ec63668a Mon Sep 17 00:00:00 2001 From: Eriawan Kusumawardhono Date: Tue, 3 Nov 2020 00:47:50 +0700 Subject: [PATCH 6/7] Update docs/visual-basic/developing-apps/windows-forms/index.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- docs/visual-basic/developing-apps/windows-forms/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visual-basic/developing-apps/windows-forms/index.md b/docs/visual-basic/developing-apps/windows-forms/index.md index e6909bd07990a..38c3d9ebb33cf 100644 --- a/docs/visual-basic/developing-apps/windows-forms/index.md +++ b/docs/visual-basic/developing-apps/windows-forms/index.md @@ -22,7 +22,7 @@ You can create Windows Forms and Windows service applications with Visual Studio ## Building Rich, Interactive User Interfaces -Windows Forms is the smart-client component of the .NET Framework and .NET Core (since .NET Core 3.0), a set of managed libraries that enable common application tasks such as reading and writing to the file system. Using a development environment like Visual Studio, you can create Windows Forms applications that display information, request input from users, and communicate with remote computers over a network. +Windows Forms is the smart-client component of the .NET Framework and .NET Core (since .NET Core 3.0). It's a set of managed libraries that enable common application tasks, such as reading and writing to the file system. Using a development environment like Visual Studio, you can create Windows Forms applications that display information, request input from users, and communicate with remote computers over a network. In Windows Forms, a form is a visual surface on which you display information to the user. You commonly build Windows Forms applications by placing controls on forms and developing responses to user actions, such as mouse clicks or key presses. A *control* is a discrete user interface (UI) element that displays data or accepts data input. From c197d9dd7a107cad166724be7f0b93afcf955ff3 Mon Sep 17 00:00:00 2001 From: Eriawan Kusumawardhono Date: Tue, 3 Nov 2020 00:47:58 +0700 Subject: [PATCH 7/7] Update docs/visual-basic/developing-apps/windows-forms/index.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- docs/visual-basic/developing-apps/windows-forms/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visual-basic/developing-apps/windows-forms/index.md b/docs/visual-basic/developing-apps/windows-forms/index.md index 38c3d9ebb33cf..6d746b869fb35 100644 --- a/docs/visual-basic/developing-apps/windows-forms/index.md +++ b/docs/visual-basic/developing-apps/windows-forms/index.md @@ -91,7 +91,7 @@ For a full introduction to ClickOnce, see [ClickOnce Security and Deployment](/v ## Other Controls and Features -There are many other features in Windows Forms that make implementing common tasks fast and easy, such as support for creating dialog boxes, printing, adding Help and documentation, and localizing your application to multiple languages. In addition, Windows Forms relies on the robust security system of the .NET, enabling you to release more secure applications to your customers. +There are many other features in Windows Forms that make implementing common tasks fast and easy, such as support for creating dialog boxes, printing, adding documentation, and localizing your application to multiple languages. In addition, Windows Forms relies on the robust security system of .NET, enabling you to release more secure applications to your customers. For step-by-step information about using these features, see the following Help topics: