' ---------------------------------------------------------------------------------
' Application specific constants.
    '
    ' Source filename.
    Const AppBaseName = "timesag4"
    ' Extension name. Uncomment ONE extension name only.
    'Const AppExtensionName = "accdb"
    'Const AppExtensionName = "accde"
    Const AppExtensionName = "accdr"
    ' Optional suffix.
    Const AppNoColourSuffix = "NC"

    ' Local install folder names. Will be (sub)subfolders of %LocalAppData%.
    Const OrgSubfolderName = "Cactus"
    Const AppSubfolderName = "Administration"

    ' Shortcut name(s). Uncomment ONE folder name ONLY:
    Const ShortcutBaseName = "Cactus TimeSag"
    'Const ShortcutBaseName = "DM Adresser Test"

    ' Icon name.
    Const IconName = "Timesag.ico"

    ' Title of the application when running. For TaskKill in subfunction KillTask.
    Const AppWindowTitle = "Cactus TimeSag"
' ---------------------------------------------------------------------------------

' ---------------------------------------------------------------------------------
' Installation specific constants.

    ' Distribution folder names. Uncomment ONE folder name ONLY:
    Const AppTypeSubfolderName = "Files"
    'Const AppTypeSubfolderName = "Development"
    'Const AppTypeSubfolderName = "Operations"
    'Const AppTypeSubfolderName = "Test"

    ' Indicate if the script is for the normal version (0) or a no-colour version (1):
    Const NoColour = 0

    ' Force a close of an open application even if blocked by a modal message box.
    Const ForceClose = True
' ---------------------------------------------------------------------------------