Skip to content

Commit fdf758c

Browse files
nemrismRon Petrusha
authored andcommitted
Replace MSDN links in Visual Basic area (dotnet#7532)
* replace MSDN links in /visual-basic/ folder * missing extensions in relative urls * fixing build issues * Update bc30817.md
1 parent af14b0a commit fdf758c

File tree

96 files changed

+579
-515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+579
-515
lines changed

docs/visual-basic/developing-apps/accessing-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ Visual Basic includes several new features to assist in developing applications
4949
[ADO.NET](../../framework/data/adonet/index.md)
5050
Describes the ADO.NET classes, which expose data-access services to the .NET Framework programmer.
5151

52-
[Data in Office Solutions](https://msdn.microsoft.com/library/xx069ybh)
52+
[Data in Office Solutions](/visualstudio/vsto/data-in-office-solutions)
5353
Contains links to pages that explain how data works in Office solutions, including information about schema-oriented programming, data caching, and server-side data access.

docs/visual-basic/developing-apps/windows-forms/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ An important part of Visual Basic is the ability to create Windows Forms applica
6161
|To|See|
6262
|--------|---------|
6363
|Use the <xref:System.Windows.Forms.BindingSource> component|[How to: Bind Windows Forms Controls with the BindingSource Component Using the Designer](../../../framework/winforms/controls/bind-wf-controls-with-the-bindingsource.md)|
64-
|Work with [!INCLUDE[vstecado](~/includes/vstecado-md.md)] data sources|[How to: Sort and Filter ADO.NET Data with the Windows Forms BindingSource Component](https://msdn.microsoft.com/library/ya3sah92.aspx)|
64+
|Work with [!INCLUDE[vstecado](~/includes/vstecado-md.md)] data sources|[How to: Sort and Filter ADO.NET Data with the Windows Forms BindingSource Component](../../../framework/winforms/controls/sort-and-filter-ado-net-data-with-wf-bindingsource-component.md)|
6565
|Use the Data Sources window|[Walkthrough: Displaying Data on a Windows Form](/visualstudio/data-tools/accessing-data-in-visual-studio)|
6666

6767
## Deploying Applications to Client Computers
@@ -89,7 +89,8 @@ An important part of Visual Basic is the ability to create Windows Forms applica
8989
|Print the contents of a form|[How to: Print Graphics in Windows Forms](../../../framework/winforms/advanced/how-to-print-graphics-in-windows-forms.md)<br /><br /> [How to: Print a Multi-Page Text File in Windows Forms](../../../framework/winforms/advanced/how-to-print-a-multi-page-text-file-in-windows-forms.md)|
9090
|Learn more about Windows Forms security|[Security in Windows Forms Overview](../../../framework/winforms/security-in-windows-forms-overview.md)|
9191

92-
## See Also
93-
<xref:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase>
94-
[Windows Forms Overview](../../../framework/winforms/windows-forms-overview.md)
95-
[My.Forms Object](../../../visual-basic/language-reference/objects/my-forms-object.md)
92+
## See also
93+
94+
- <xref:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase>
95+
- [Windows Forms Overview](../../../framework/winforms/windows-forms-overview.md)
96+
- [My.Forms Object](../../../visual-basic/language-reference/objects/my-forms-object.md)

docs/visual-basic/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ Provides a list of Web sites and newsgroups that can help you find answers to co
6060
[Visual C++](/cpp/)
6161
Provides links into the Visual C++ documentation.
6262

63-
[Office and SharePoint Development](https://msdn.microsoft.com/library/d2tx7z6d)
63+
[Office and SharePoint Development](/visualstudio/vsto/office-and-sharepoint-development-in-visual-studio)
6464
Provides information about using Microsoft Office and Visual Studio as part of a business application.

docs/visual-basic/language-reference/error-messages/bad-checksum-value-non-hex-digits-or-odd-number-of-hex-digits.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ A checksum value contains invalid hexadecimal digits or has an odd number of dig
2525

2626
3. If the warning still persists, or if you are not using ASP.NET, gather information about the circumstances and notify Microsoft Product Support Services.
2727

28-
## See Also
29-
[ASP.NET Overview](https://msdn.microsoft.com/library/4w3ex9c2.aspx)
30-
[Talk to Us](/visualstudio/ide/talk-to-us)
28+
## See also
29+
30+
- [ASP.NET Overview](/aspnet/overview)
31+
- [Talk to Us](/visualstudio/ide/talk-to-us)

docs/visual-basic/language-reference/error-messages/because-this-call-is-not-awaited-the-current-method-continues-to-run.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Because this call is not awaited, execution of the current method continues befo
111111

112112
A simple window that contains a button and a text box appears in the **Design** view of MainWindow.xaml.
113113

114-
For more information about the XAML Designer, see [Creating a UI by using XAML Designer](/visualstudio/designers/creating-a-ui-by-using-xaml-designer-in-visual-studio). For information about how to build your own simple UI, see the "To create a WPF application" and "To design a simple WPF MainWindow" sections of [Walkthrough: Accessing the Web by Using Async and Await](https://msdn.microsoft.com/library/25879a6d-fdee-4a38-bc98-bb8c24d16042).
114+
For more information about the XAML Designer, see [Creating a UI by using XAML Designer](/visualstudio/designers/creating-a-ui-by-using-xaml-designer-in-visual-studio). For information about how to build your own simple UI, see the "To create a WPF application" and "To design a simple WPF MainWindow" sections of [Walkthrough: Accessing the Web by Using Async and Await](../../../visual-basic/programming-guide/concepts/async/walkthrough-accessing-the-web-by-using-async-and-await.md).
115115

116116
4. Replace the code in MainWindow.xaml.vb with the following code.
117117

@@ -197,6 +197,7 @@ Because this call is not awaited, execution of the current method continues befo
197197

198198
The expected output appears at the end of the code.
199199

200-
## See Also
201-
[Await Operator](../../../visual-basic/language-reference/operators/await-operator.md)
202-
[Asynchronous Programming with Async and Await](../../../visual-basic/programming-guide/concepts/async/index.md)
200+
## See also
201+
202+
- [Await Operator](../../../visual-basic/language-reference/operators/await-operator.md)
203+
- [Asynchronous Programming with Async and Await](../../../visual-basic/programming-guide/concepts/async/index.md)

docs/visual-basic/language-reference/special-characters/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ Special characters are predefined, contextual characters that modifies the progr
1111

1212
- [$](interpolated.md), the interpolated string character.
1313

14-
## See Also
15-
[Visual Basic Reference](../../../csharp/language-reference/index.md)
16-
14+
## See also
15+
16+
- [Visual Basic Reference](../../../visual-basic/language-reference/index.md)

docs/visual-basic/language-reference/statements/option-strict-statement.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -145,15 +145,16 @@ Option Strict { On | Off }
145145

146146
[!code-vb[VbVbalrStatements#164](../../../visual-basic/language-reference/error-messages/codesnippet/VisualBasic/option-strict-statement_4.vb)]
147147

148-
## See Also
149-
[Widening and Narrowing Conversions](../../../visual-basic/programming-guide/language-features/data-types/widening-and-narrowing-conversions.md)
150-
[Implicit and Explicit Conversions](../../../visual-basic/programming-guide/language-features/data-types/implicit-and-explicit-conversions.md)
151-
[Compile Page, Project Designer (Visual Basic)](/visualstudio/ide/reference/compile-page-project-designer-visual-basic)
152-
[Option Explicit Statement](../../../visual-basic/language-reference/statements/option-explicit-statement.md)
153-
[Type Conversion Functions](../../../visual-basic/language-reference/functions/type-conversion-functions.md)
154-
[How to: Access Members of an Object](../../../visual-basic/programming-guide/language-features/variables/how-to-access-members-of-an-object.md)
155-
[Embedded Expressions in XML](../../../visual-basic/programming-guide/language-features/xml/embedded-expressions-in-xml.md)
156-
[Relaxed Delegate Conversion](../../../visual-basic/programming-guide/language-features/delegates/relaxed-delegate-conversion.md)
157-
[Late Binding in Office Solutions](https://msdn.microsoft.com/library/3xxe951d)
158-
[/optionstrict](../../../visual-basic/reference/command-line-compiler/optionstrict.md)
159-
[Visual Basic Defaults, Projects, Options Dialog Box](/visualstudio/ide/reference/visual-basic-defaults-projects-options-dialog-box)
148+
## See also
149+
150+
- [Widening and Narrowing Conversions](../../../visual-basic/programming-guide/language-features/data-types/widening-and-narrowing-conversions.md)
151+
- [Implicit and Explicit Conversions](../../../visual-basic/programming-guide/language-features/data-types/implicit-and-explicit-conversions.md)
152+
- [Compile Page, Project Designer (Visual Basic)](/visualstudio/ide/reference/compile-page-project-designer-visual-basic)
153+
- [Option Explicit Statement](../../../visual-basic/language-reference/statements/option-explicit-statement.md)
154+
- [Type Conversion Functions](../../../visual-basic/language-reference/functions/type-conversion-functions.md)
155+
- [How to: Access Members of an Object](../../../visual-basic/programming-guide/language-features/variables/how-to-access-members-of-an-object.md)
156+
- [Embedded Expressions in XML](../../../visual-basic/programming-guide/language-features/xml/embedded-expressions-in-xml.md)
157+
- [Relaxed Delegate Conversion](../../../visual-basic/programming-guide/language-features/delegates/relaxed-delegate-conversion.md)
158+
- [Late Binding in Office Solutions](/visualstudio/vsto/late-binding-in-office-solutions)
159+
- [/optionstrict](../../../visual-basic/reference/command-line-compiler/optionstrict.md)
160+
- [Visual Basic Defaults, Projects, Options Dialog Box](/visualstudio/ide/reference/visual-basic-defaults-projects-options-dialog-box)

docs/visual-basic/misc/bc30793.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The [TryCast Operator](../../visual-basic/language-reference/operators/trycast-o
1919

2020
- The [New Operator](../../visual-basic/language-reference/operators/new-operator.md) constraint (the type argument must expose a parameterless constructor that the creating code can access, and therefore it must be a class)
2121

22-
- The [Class (Visual Basic)](https://msdn.microsoft.com/library/0777c6e6-46bc-451b-ad70-57b49d4ef4f7) constraint (the type argument must be a reference type)
22+
- The [Class (Visual Basic)](../../visual-basic/language-reference/statements/class-statement.md) constraint (the type argument must be a reference type)
2323

2424
**Error ID:** BC30793
2525

@@ -29,9 +29,10 @@ The [TryCast Operator](../../visual-basic/language-reference/operators/trycast-o
2929

3030
- If you cannot require the type parameter to accept only a reference type, you cannot use it with `TryCast`. You might be able to use the [CType Function](../../visual-basic/language-reference/functions/ctype-function.md) instead.
3131

32-
## See Also
33-
[Generic Types in Visual Basic](../../visual-basic/programming-guide/language-features/data-types/generic-types.md)
34-
[Type List](../../visual-basic/language-reference/statements/type-list.md)
35-
[Value Types and Reference Types](../../visual-basic/programming-guide/language-features/data-types/value-types-and-reference-types.md)
36-
[Widening and Narrowing Conversions](../../visual-basic/programming-guide/language-features/data-types/widening-and-narrowing-conversions.md)
37-
[Implicit and Explicit Conversions](../../visual-basic/programming-guide/language-features/data-types/implicit-and-explicit-conversions.md)
32+
## See also
33+
34+
- [Generic Types in Visual Basic](../../visual-basic/programming-guide/language-features/data-types/generic-types.md)
35+
- [Type List](../../visual-basic/language-reference/statements/type-list.md)
36+
- [Value Types and Reference Types](../../visual-basic/programming-guide/language-features/data-types/value-types-and-reference-types.md)
37+
- [Widening and Narrowing Conversions](../../visual-basic/programming-guide/language-features/data-types/widening-and-narrowing-conversions.md)
38+
- [Implicit and Explicit Conversions](../../visual-basic/programming-guide/language-features/data-types/implicit-and-explicit-conversions.md)

docs/visual-basic/misc/bc30817.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ It is no longer valid to use the value of a variable or expression with the `GoT
1717

1818
- Restructure your application to use `If...Then...Else` or `Case` statements.
1919

20-
## See Also
21-
[On Error Statement](../../visual-basic/language-reference/statements/on-error-statement.md)
22-
[If...Then...Else Statement](../../visual-basic/language-reference/statements/if-then-else-statement.md)
23-
[Case (Visual Basic)](https://msdn.microsoft.com/library/a14efce6-5057-4b7d-8afd-056dd4abdcee)
20+
## See also
21+
22+
- [On Error Statement](../../visual-basic/language-reference/statements/on-error-statement.md)
23+
- [If...Then...Else Statement](../../visual-basic/language-reference/statements/if-then-else-statement.md)
24+
- [Select...Case Statement](../../visual-basic/language-reference/statements/select-case-statement.md)

docs/visual-basic/misc/bc31197.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ An XML literal has been defined that includes a full-width character as a delimi
1717

1818
- Remove the full-width character from the XML literal definition and replace it with a valid ANSI delimiter character. Valid delimiter characters include the following: `<`, `>`, `=`, `:`, `/`.
1919

20-
## See Also
21-
[XML Literals](../../visual-basic/language-reference/xml-literals/index.md)
22-
[Character Encoding in the .NET Framework](https://msdn.microsoft.com/library/bf6d9823-4c2d-48af-b280-919c5af66ae9)
23-
[XML](../../visual-basic/programming-guide/language-features/xml/index.md)
20+
## See also
21+
22+
- [XML Literals](../../visual-basic/language-reference/xml-literals/index.md)
23+
- [Character Encoding in the .NET Framework](../../standard/base-types/character-encoding.md)
24+
- [XML](../../visual-basic/programming-guide/language-features/xml/index.md)

0 commit comments

Comments
 (0)