Declare Constant for Chr(14)
Word has built-in constants such as vbCr = Chr(13) and vbFormFeed = Chr(12).
How can I declare my own constant vbColumnBreak = Chr(14)?
Word VBA compiler objects to "Chr" in the following declaration:
public const vbColumnBreak as string = Chr(14)
|