Suche…


Bemerkungen

Kommentarblöcke

Wenn Sie mehrere Zeilen auf einmal kommentieren oder auskommentieren müssen, können Sie die Schaltflächen der Symbolleiste " Bearbeiten" der IDE verwenden:

Kommentarblock - Fügt dem Anfang aller ausgewählten Zeilen einen einzelnen Apostroph hinzu

Kommentarsperre

Blockieren ohne Kommentar - Entfernt den ersten Apostroph vom Anfang aller ausgewählten Zeilen

Unkommentar-Block

Mehrzeilige Kommentare Viele andere Sprachen unterstützen mehrzeilige Blockkommentare, VBA erlaubt jedoch nur einzeilige Kommentare.

Apostrophe Kommentare

Ein Kommentar wird durch einen Apostroph ( ' ) markiert und bei der Ausführung des Codes ignoriert. Kommentare helfen zukünftigen Lesern, sich selbst, Ihren Code zu erklären.

Da alle Zeilen, die mit einem Kommentar beginnen, ignoriert werden, können sie auch verwendet werden, um die Ausführung von Code zu verhindern (während Sie debuggen oder umgestalten). Platzieren Sie einen Apostroph ' , bevor Sie Ihren Code verwandelt es in einen Kommentar. (Dies wird als Kommentieren der Zeile bezeichnet.)

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

REM-Kommentare

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


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow