Microsoft KB Archive/171388

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 11:05, 21 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article ID: 171388

Article Last Modified on 1/20/2007



APPLIES TO

  • Microsoft PowerPoint 98 for Macintosh
  • Microsoft Word 98 for Macintosh
  • Microsoft Excel 98 for Macintosh
  • Microsoft PowerPoint 97 Standard Edition
  • Microsoft Word 97 Standard Edition
  • Microsoft Excel 97 Standard Edition



This article was previously published under Q171388

SUMMARY

The Microsoft Visual Basic Editor allows you to comment and uncomment blocks of code at a time. This command is not available by default; to use this feature you must add the Comment Block and Uncomment block commands to a menu. This article describes how to add the two commands to the Visual Basic Editor standard menu and how to comment code.

MORE INFORMATION

Adding the Comment Block and Uncomment Block Commands

To add the commands to the standard menu in the Visual Basic Editor, follow these steps:

  1. On the View menu, point to Toolbars, and then click Customize.
  2. Click the Commands tab in the Customize dialog box.
  3. Under Categories, click Edit.
  4. Find the Comment Block command, click it, and then drag it to the Standard command bar.
  5. Find the Uncomment Block command, click it, and then drag it to the Standard command bar.

Using the Comment Block and Uncomment Block Commands

To comment a block of code, follow these steps:

  1. In the Visual Basic Editor, select a section of code that you want to comment.
  2. Click Comment Block.
  3. To remove comments, select the comments and click Uncomment Block.

If a line of code contains more than one comment, the results may be different from the results you expect. For example, in the following comment:

   ' If strName = "MyName" Then ' Check if strName is equal to MyName.
                

the Uncomment Block command removes the apostrophe (') at the beginning of the line.

In the following comment

   '  ' This is a comment.
                

the first time you click Uncomment Block, the leftmost apostrophe is removed. The second time you click Uncomment Block for this comment, the remaining apostrophe is removed.


Additional query words: 8.00 ppt8 vba vbe blocks macword macxl macppt

Keywords: kbdtacode kbhowto KB171388