-
Notifications
You must be signed in to change notification settings - Fork 6k
Fixes miscellaneous issues in Visual Basic content #1268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: "Accessing Application Settings (Visual Basic) | Microsoft Docs" | ||
title: "Accessing application settings (Visual Basic) | Microsoft Docs" | ||
ms.custom: "" | ||
ms.date: "2015-07-20" | ||
ms.prod: "visual-studio-dev14" | ||
|
@@ -34,7 +34,7 @@ translation.priority.ht: | |
- "zh-cn" | ||
- "zh-tw" | ||
--- | ||
# Accessing Application Settings (Visual Basic) | ||
# Accessing application settings (Visual Basic) | ||
This section contains topics describing the `My.Settings` object and the tasks it enables you to accomplish. | ||
|
||
## My.Settings | ||
|
@@ -52,9 +52,6 @@ This section contains topics describing the `My.Settings` object and the tasks i | |
|Save updated user setting values|[How to: Persist User Settings in Visual Basic](../../../../visual-basic/developing-apps/programming/app-settings/how-to-persist-user-settings.md)| | ||
|Determine the values of user settings|[How to: Read Application Settings in Visual Basic](../../../../visual-basic/developing-apps/programming/app-settings/how-to-read-application-settings.md)| | ||
|
||
## See Also | ||
[Managing Application Settings (.NET)](/visualstudio/ide/managing-application-settings-dotnet) | ||
[How To: Read Settings at Run Time With C#](http://msdn.microsoft.com/library/dbe8bf09-5e1c-49da-9192-154033d7240b) | ||
[How To: Write User Settings at Run Time with C#](http://msdn.microsoft.com/library/9d061c7d-b33b-470f-a36d-edccb1d6f9a3) | ||
## See also | ||
[Managing Application Settings (.NET)](/visualstudio/ide/managing-application-settings-dotnet) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this one works. did you want to take it out? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It wasn't working when I checked it - I'll add it back There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good. I've been planning to send an email to the team on the cross-repo links. Check your inbox and send me your thoughts! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Turns out that I had removed this link then added it back in the previous commit. No further changes, so I'm going to merge. |
||
[My.Settings Object](../../../../visual-basic/language-reference/objects/my-settings-object.md) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: "Storing Data to and Reading from the Clipboard (Visual Basic) | Microsoft Docs" | ||
title: "Storing data to and reading from the Clipboard (Visual Basic) | Microsoft Docs" | ||
ms.custom: "" | ||
ms.date: "2015-07-20" | ||
ms.prod: "visual-studio-dev14" | ||
|
@@ -38,7 +38,7 @@ translation.priority.ht: | |
- "zh-cn" | ||
- "zh-tw" | ||
--- | ||
# Storing Data to and Reading from the Clipboard (Visual Basic) | ||
# Storing data to and reading from the Clipboard (Visual Basic) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here again, perhaps "Storing data....with Visual Basic." |
||
The Clipboard can be used to store data, such as text and images. Because the Clipboard is shared by all active processes, it can be used to transfer data between them. The `My.Computer.Clipboard` object allows you to easily access the Clipboard and to read from and write to it. | ||
|
||
## Reading from the Clipboard | ||
|
@@ -90,9 +90,9 @@ The Clipboard can be used to store data, such as text and images. Because the Cl | |
> [!IMPORTANT] | ||
> Because the Clipboard can be accessed by other users, do not use it to store sensitive information, such as passwords or confidential data. | ||
|
||
## See Also | ||
## See also | ||
<xref:Microsoft.VisualBasic.MyServices.ClipboardProxy> | ||
<xref:Microsoft.VisualBasic.MyServices.ClipboardProxy.GetAudioStream%2A> | ||
<xref:Microsoft.VisualBasic.MyServices.ClipboardProxy.SetDataObject%2A> | ||
[How to: Read Object Data from an XML File](http://msdn.microsoft.com/library/7e677b93-7526-4f22-9de7-9dffa4c62ef3) | ||
[How to: Write Object Data to an XML File](http://msdn.microsoft.com/library/279c232a-cee5-4e3c-9710-3696875c8ee4) | ||
[How to: Read Object Data from an XML File](../../../programming-guide/concepts/serialization/how-to-read-object-data-from-an-xml-file.md) | ||
[How to: Write Object Data to an XML File](../../../programming-guide/concepts/serialization/how-to-write-object-data-to-an-xml-file.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might this be better as "Accessing application settings in Visual Basic"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might, but most of the topics in MSDN use this convention. It would be a major work item to change all of them; the purpose of this PR is simply to fix the links.