खोज…


टिप्पणियों

टिप्पणी ब्लॉक

यदि आपको एक बार में कई पंक्तियों पर टिप्पणी करने या असहज करने की आवश्यकता है, तो आप IDE के संपादन टूलबार बटन का उपयोग कर सकते हैं:

टिप्पणी ब्लॉक - सभी चयनित लाइनों की शुरुआत के लिए एक एकल एपॉस्ट्रॉफी जोड़ता है

टिप्पणी ब्लॉक

Uncomment Block - सभी चयनित लाइनों की शुरुआत से पहला एपोस्ट्रोफ निकालता है

अधूरा ब्लॉक

बहु-पंक्ति टिप्पणियाँ कई अन्य भाषाएँ बहु-पंक्ति ब्लॉक टिप्पणियों का समर्थन करती हैं, लेकिन VBA केवल एकल-पंक्ति टिप्पणियों की अनुमति देता है।

Apostrophe टिप्पणियाँ

एक टिप्पणी एक अपॉस्ट्रॉफी ( ' ) द्वारा चिह्नित है, और जब कोड निष्पादित होता है तो इसे अनदेखा कर दिया जाता है। टिप्पणियां आपके पाठकों सहित भविष्य के पाठकों को अपना कोड समझाने में मदद करती हैं।

चूँकि किसी टिप्पणी के साथ शुरू होने वाली सभी पंक्तियों को अनदेखा किया जाता है, उनका उपयोग कोड को निष्पादित करने से रोकने के लिए भी किया जा सकता है (जब आप डीबग या रिफ्लेक्टर करते हैं)। अपने कोड को टिप्पणी में बदलने से पहले एक एपॉस्ट्रॉफ़ ' रखना। (इसे लाइन को कमेंट करना कहा जाता है।)

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

रेम टिप्पणियाँ

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
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow