''''''''''''''''''''''''''''
' MODIFIED Visual Basic global constant file, containing
' only constants used in the program. This file can be loaded
' into a code module.
'
' Some constants are commented out because they have
' duplicates (e.g., NONE appears several places).
'
' If you are updating a Visual Basic application written with
' an older version, you should replace your global constants
' with the constants in this file.
'
''''''''''''''''''''''''''''

' MousePointer
Global Const DEFAULT = 0        ' 0 - Default
Global Const HOURGLASS = 11     ' 11 - Hourglass

' Function Parameters
' MsgBox parameters
Global Const MB_OK = 0                 ' OK button only

Global Const MB_ICONEXCLAMATION = 48   ' Warning message

' MsgBox return values
Global Const IDOK = 1                  ' OK button pressed
Global Const IDABORT = 3               ' Abort button pressed
Global Const IDYES = 6                 ' Yes button pressed

' SetAttr, Dir, GetAttr functions
Global Const ATTR_VOLUME = 8
Global Const ATTR_DIRECTORY = 16

