[Previous] [TOC] [Next]

Constants


Constants are named in uppercase letters, with no type or scope prefixes. Arbitrary prefixes can be used to group sets of related constants:

  Const TABLE_SIZE            As Integer = 100
  Const DEFAULT_LOG_FILE      As String = "log.txt"

  Const ERR_GENERIC           As Integer = 32767
  Const ERR_LOGON_FAIL        As Integer = 32766
  Const ERR_COMPONENT_MISSING As Integer = 32765


[Previous] [TOC] [Next]