Ricerca…
Osservazioni
Blocchi di commento
Se è necessario commentare o decommentare più righe contemporaneamente, è possibile utilizzare i pulsanti Modifica barra degli strumenti IDE:
Blocco commenti : aggiunge un singolo apostrofo all'inizio di tutte le righe selezionate
Blocco commento : rimuove il primo apostrofo dall'inizio di tutte le righe selezionate
Commenti a più righe Molte altre lingue supportano commenti a blocchi su più righe, ma VBA consente solo commenti a riga singola.
Commenti apostrofo
Un commento è contrassegnato da un apostrofo ( '
) e ignorato quando il codice viene eseguito. I commenti aiutano a spiegare il tuo codice ai futuri lettori, incluso te stesso.
Poiché tutte le righe che iniziano con un commento vengono ignorate, possono anche essere utilizzate per impedire l'esecuzione del codice (mentre esegui il debug o il refactoring). Posizionando un apostrofo '
prima che il tuo codice lo trasformi in un commento. (Questo è chiamato commentando la linea.)
Sub InlineDocumentation()
'Comments start with an "'"
'They can be place before a line of code, which prevents the line from executing
'Debug.Print "Hello World"
'They can also be placed after a statement
'The statement still executes, until the compiler arrives at the comment
Debug.Print "Hello World" 'Prints a welcome message
'Comments can have 0 indention....
'... or as much as needed
'''' Comments can contain multiple apostrophes ''''
'Comments can span lines (using line continuations) _
but this can make for hard to read code
'If you need to have mult-line comments, it is often easier to
'use an apostrophe on each line
'The continued statement syntax (:) is treated as part of the comment, so
'it is not possible to place an executable statement after a comment
'This won't run : Debug.Print "Hello World"
End Sub
'Comments can appear inside or outside a procedure
Commenti REM
Sub RemComments()
Rem Comments start with "Rem" (VBA will change any alternate casing to "Rem")
Rem is an abbreviation of Remark, and similar to DOS syntax
Rem Is a legacy approach to adding comments, and apostrophes should be preferred
Rem Comments CANNOT appear after a statement, use the apostrophe syntax instead
Rem Unless they are preceded by the instruction separator token
Debug.Print "Hello World": Rem prints a welcome message
Debug.Print "Hello World" 'Prints a welcome message
'Rem cannot be immediately followed by the following characters "!,@,#,$,%,&"
'Whereas the apostrophe syntax can be followed by any printable character.
End Sub
Rem Comments can appear inside or outside a procedure