Yahoo Search Busca da Web

Resultado da Busca

  1. A atualização disponível nesta página destina-se a aplicativos que usam o Microsoft® Visual Basic® for Applications (VBA). Se você é usuário do Microsoft Office 2000 ou Microsoft Office XP, obtenha um patch para este problema no site Atualização do Office além de instalar este patch.

    • Baixar

      Gostaríamos de exibir a descriçãoaqui, mas o site que você...

    • Downloads

      Visual Studio 2022. O IDE mais abrangente para...

  2. Começar agora. Tutorial. Guia de Instruções. Explore como criar diferentes aplicativos do Visual Basic (VB) no Visual Studio, incluindo aplicativos de console, Web, Windows Forms e Windows Desktop, e encontre recursos de codificação.

    • Overview
    • Create a new code file
    • Use code snippets
    • Comment out code
    • Collapse code blocks
    • View symbol definitions
    • Use IntelliSense to complete words
    • Refactor a name
    • See also
    • GeneratedCaptionsTabForHeroSec

    In this 10-minute introduction to the code editor in Visual Studio, we'll add code to a file to look at some of the ways that Visual Studio makes writing, navigating, and understanding Visual Basic code easier.

    This article assumes you're already familiar with Visual Basic. If you aren't, we suggest you look at a tutorial such as Create a simple Visual Basic (VB) console app first.

    Start by creating a new file and adding some code to it.

    1.Open Visual Studio. Press Esc or click Continue without code on the start window to open the development environment.

    2.From the File menu on the menu bar, choose New File.

    3.In the New File dialog box, under the General category, choose Visual Basic Class, and then choose Open.

    A new file opens in the editor with the skeleton of a Visual Basic class. (You can already notice that you don't have to create a full Visual Studio project to gain some of the benefits that the code editor offers, such as syntax highlighting. All you need is a code file!)

    1.Open Visual Studio. Press Esc or select Continue without code on the start window to open the development environment.

    Visual Studio provides useful code snippets that you can use to quickly and easily generate commonly used code blocks. Code snippets are available for different programming languages including Visual Basic, C#, and C++. Let's add the Visual Basic Sub snippet to our file.

    1.Place your cursor above the line that says End Class, and type sub.

    A pop-up dialog box appears with information about the Sub keyword and how to insert the Sub code snippet.

    2.Press Tab twice to insert the code snippet.

    The outline for the Sub procedure MySub() is added to the file.

    The available code snippets vary for different programming languages. You can look at the available code snippets for Visual Basic by choosing Edit > IntelliSense > Insert Snippet (or press Ctrl+K, Ctrl+X). For Visual Basic, code snippets are available for the following categories:

    The toolbar, which is the row of buttons under the menu bar in Visual Studio, can help make you more productive as you code. For example, you can toggle IntelliSense completion mode, increase or decrease a line indent, or comment out code that you don't want to compile. (IntelliSense is a coding aid that displays a list of matching methods, amongst other things.) In this section, we'll comment out some code.

    1.Paste the following code into the MySub() procedure body.

    2.We're not using the morewords array, but we may use it later so we don't want to completely delete it. Instead, let's comment out those lines. Select the entire definition of morewords to the closing curly brace, and then choose the Comment out the selected lines button on the toolbar. If you prefer to use the keyboard, press Ctrl+K, Ctrl+C.

    The Visual Basic comment character ' is added to the beginning of each selected line to comment out the code.

    1.Paste the following code into the MySub() procedure body.

    2.We're not using the morewords array, but we may use it later so we don't want to completely delete it. Instead, let's comment out those lines. Select the entire definition of morewords to the closing curly brace, and then choose the Comment out the selected lines button on the toolbar. If you prefer to use the keyboard, press Ctrl+K, Ctrl+C.

    You can collapse sections of code to focus just on the parts that are of interest to you. To practice, let's collapse the _words array to one line of code. Choose the small gray box with the minus sign inside it in the margin of the line that says Dim _words = New String() {. Or, if you're a keyboard user, place the cursor anywhere in the array definition and press Ctrl+M, Ctrl+M.

    The code block collapses to just the first line, followed by an ellipsis (...). To expand the code block again, click the same gray box that now has a plus sign in it, or press Ctrl+M, Ctrl+M again. This feature is called Outlining and is especially useful when you're collapsing long methods or entire classes.

    You can collapse sections of code to focus just on the parts that are of interest to you. To practice, let's collapse the _words array to one line of code. Choose the small gray box with the minus sign inside it in the margin of the line that says Dim _words = New String() {. Or, if you're a keyboard user, place the cursor anywhere in the array definition and press Ctrl+M, Ctrl+M.

    The code block collapses to just the first line, followed by an ellipsis (...). To expand the code block again, choose the same gray box that now has a plus sign in it, or press Ctrl+M, Ctrl+M again. This feature is called Outlining and is especially useful when you're collapsing long methods or entire classes.

    The Visual Studio editor makes it easy to inspect the definition of a type, method, etc. One way is to navigate to the file that contains the definition, for example by choosing Go to Definition anywhere the symbol is referenced. An even quicker way that doesn't move your focus away from the file you're working in is to use Peek Definition. Let's peek at the definition of the String type.

    1.Right-click on the word String and choose Peek Definition from the content menu. Or, press Alt+F12.

    A pop-up window appears with the definition of the String class. You can scroll within the pop-up window, or even peek at the definition of another type from the peeked code.

    2.Close the peeked definition window by choosing the small box with an "x" at the top right of the pop-up window.

    The Visual Studio editor makes it easy to inspect the definition of a type or class member. One way is to navigate to the file that contains the definition, for example by choosing Go to Definition anywhere the symbol is referenced. An even quicker way that doesn't move your focus away from the file you're working in is to use Peek Definition. Let's peek at the definition of the String type.

    1.Right-click on the word String and choose Peek Definition from the content menu. Or, press Alt+F12.

    IntelliSense is an invaluable resource when you're coding. It can show you information about available members of a type, or parameter details for different overloads of a method. You can also use IntelliSense to complete a word after you type enough characters to disambiguate it. Let's add a line of code to print out the ordered strings to the console window, which is the standard place for output from the program to go.

    1.Below the query variable, start typing the following code:

    You see IntelliSense show you Quick Info about the query symbol.

    2.To insert the rest of the word query by using IntelliSense's word completion functionality, press Tab.

    3.Finish off the code block to look like the following code.

    IntelliSense is an invaluable resource when you're coding. It can show you information about available members of a type, or parameter details for different overloads of a method. You can also use IntelliSense to complete a word after you type enough characters to disambiguate it. Let's add a line of code to print out the ordered strings to the console window, which is the standard place for output from the program to go.

    Nobody gets code right the first time, and one of the things you might have to change is the name of a variable or method. Let's try out Visual Studio's refactor functionality to rename the _words variable to words.

    1.Place your cursor over the definition of the _words variable and choose Rename from the right-click or context menu.

    A pop-up Rename dialog box appears at the top right of the editor.

    2.With the variable _words still selected, type in the desired name of words. Notice that the reference to words in the query is also automatically renamed. Before you press Enter or click Apply, select the Include comments checkbox in the Rename pop-up box.

    3.Press Enter or click Apply.

    Both occurrences of words are renamed, as well as the reference to words in the code comment.

    This article shows how to use the code editor in Visual Studio to write, navigate, and understand Visual Basic code. It covers topics such as creating a new file, using code snippets, commenting out code, and collapsing code blocks.

  3. Find the best IDE for your programming needs, whether you use .NET, C++, web, cloud, desktop, mobile, or other languages. Download Visual Studio 2022, Visual Studio Code, or other tools for free or with a trial.

  4. Learn how to create Visual Basic apps with Visual Studio, including console, web, Windows Forms, and Windows Desktop apps. Find coding resources, tutorials, and how-to guides for Visual Basic language and Visual Studio.

  5. 27 de jan. de 2024 · Aprenda a desenvolver aplicativos com o Visual Basic e o .NET Core no Visual Studio. Veja os novos recursos, exemplos, instruções e recursos adicionais para o Visual Basic.