XL97: Using VbConstants in Text Strings in MS Excel 97

ID: Q169972

The information in this article applies to:

SUMMARY

Visual Basic for Applications includes a number of constants that you can use in macro code to represent certain "untypeable" characters, such as tabs, line feeds, and carriage returns. This article contains information about using these constants and information about problems that you may encounter when you use them.

MORE INFORMATION

The constants are listed in the following table.

   Constant       Definition
   -------------------------------------------------------------------
   vbBack         A backspace character [Chr(8)]
   vbCr           A carriage return [Chr(13)]
   vbCrLf         A carriage return and line feed [Chr(13) + Chr(10)]
   vbLf           A linefeed [Chr(10)]
   vbNewLine      A platform-specific new line character, either
                  [Chr(13) + Chr(10)] or [Chr(13)]
   vbNullChar     A null character of value 0 [Chr(0)]
   vbNullString   A string of value 0 [no Chr code]; note that this is
                  not the same as ""
   vbTab          A tab character [Chr(9)]

You can use these constants anywhere in Visual Basic code where you want them to appear. For example, you can use them to display a multiline message in a message box as in the following example:

   MsgBox "Hello" & vbCr & "World!"

Make sure that you do not enclose the constants within quotation marks; if you do, the constant appear in the text string instead of the character it represents.

When you use these constants, you may notice the following problems.

Text Boxes and Cells

Message Boxes (MsgBox)

All of the constants listed in this article work correctly when used in a MsgBox with just two exceptions.

Additional query words: XL97 square rectangle box
Keywords          : kbcode kbprg xlvbahowto xlvbainfo 
Version           : WINDOWS:97
Platform          : WINDOWS

Last Reviewed: November 1, 1998