home *** CD-ROM | disk | FTP | other *** search
- ''''''''''''''''''''''''''''
- ' Visual Basic global constant file. 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.
- '
- ''''''''''''''''''''''''''''
-
-
- ' General
-
-
- ' Show parameters
- Global Const MODAL = 1
- Global Const MODELESS = 0
-
-
- ' Colors
- Global Const BLACK = &H0&
- Global Const RED = &HFF&
- Global Const GREEN = &HFF00&
- Global Const YELLOW = &HFFFF&
- Global Const BLUE = &HFF0000
- Global Const MAGENTA = &HFF00FF
- Global Const CYAN = &HFFFF00
- Global Const WHITE = &HFFFFFF
-
- ' Function Parameters
- ' MsgBox parameters
- Global Const MB_OK = 0 ' OK button only
- Global Const MB_OKCANCEL = 1 ' OK and Cancel buttons
- Global Const MB_ABORTRETRYIGNORE = 2 ' Abort, Retry, and Ignore buttons
- Global Const MB_YESNOCANCEL = 3 ' Yes, No, and Cancel buttons
- Global Const MB_YESNO = 4 ' Yes and No buttons
- Global Const MB_RETRYCANCEL = 5 ' Retry and Cancel buttons
-
- Global Const MB_ICONSTOP = 16 ' Critical message
- Global Const MB_ICONQUESTION = 32 ' Warning query
- Global Const MB_ICONEXCLAMATION = 48 ' Warning message
- Global Const MB_ICONINFORMATION = 64 ' Information message
-
- Global Const MB_APPLMODAL = 0 ' Application Modal Message Box
- Global Const MB_DEFBUTTON1 = 0 ' First button is default
- Global Const MB_DEFBUTTON2 = 256 ' Second button is default
- Global Const MB_DEFBUTTON3 = 512 ' Third button is default
- Global Const MB_SYSTEMMODAL = 4096 'System Modal
-
- ' MsgBox return values
- Global Const IDOK = 1 ' OK button pressed
- Global Const IDCANCEL = 2 ' Cancel button pressed
- Global Const IDABORT = 3 ' Abort button pressed
- Global Const IDRETRY = 4 ' Retry button pressed
- Global Const IDIGNORE = 5 ' Ignore button pressed
- Global Const IDYES = 6 ' Yes button pressed
- Global Const IDNO = 7 ' No button pressed
-
-
- 'Common Dialog Control
- 'Action Property
- Global Const DLG_FILE_OPEN = 1
- Global Const DLG_FILE_SAVE = 2
- Global Const DLG_COLOR = 3
- Global Const DLG_FONT = 4
- Global Const DLG_PRINT = 5
- Global Const DLG_HELP = 6
-
- 'File Open/Save Dialog Flags
- Global Const OFN_READONLY = &H1&
- Global Const OFN_OVERWRITEPROMPT = &H2&
- Global Const OFN_HIDEREADONLY = &H4&
- Global Const OFN_NOCHANGEDIR = &H8&
- Global Const OFN_SHOWHELP = &H10&
- Global Const OFN_NOVALIDATE = &H100&
- Global Const OFN_ALLOWMULTISELECT = &H200&
- Global Const OFN_EXTENSIONDIFFERENT = &H400&
- Global Const OFN_PATHMUSTEXIST = &H800&
- Global Const OFN_FILEMUSTEXIST = &H1000&
- Global Const OFN_CREATEPROMPT = &H2000&
- Global Const OFN_SHAREAWARE = &H4000&
- Global Const OFN_NOREADONLYRETURN = &H8000&
-
- 'Printer Dialog Flags
- Global Const PD_ALLPAGES = &H0&
- Global Const PD_SELECTION = &H1&
- Global Const PD_PAGENUMS = &H2&
- Global Const PD_NOSELECTION = &H4&
- Global Const PD_NOPAGENUMS = &H8&
- Global Const PD_COLLATE = &H10&
- Global Const PD_PRINTTOFILE = &H20&
- Global Const PD_PRINTSETUP = &H40&
- Global Const PD_NOWARNING = &H80&
- Global Const PD_RETURNDC = &H100&
- Global Const PD_RETURNIC = &H200&
- Global Const PD_RETURNDEFAULT = &H400&
- Global Const PD_SHOWHELP = &H800&
- Global Const PD_USEDEVMODECOPIES = &H40000
- Global Const PD_DISABLEPRINTTOFILE = &H80000
- Global Const PD_HIDEPRINTTOFILE = &H100000
-
- 'Help Constants
- Global Const HELP_CONTEXT = &H1 'Display topic in ulTopic
- Global Const HELP_QUIT = &H2 'Terminate help
- Global Const HELP_INDEX = &H3 'Display index
- Global Const HELP_CONTENTS = &H3
- Global Const HELP_HELPONHELP = &H4 'Display help on using help
- Global Const HELP_SETINDEX = &H5 'Set the current Index for multi index help
- Global Const HELP_SETCONTENTS = &H5
- Global Const HELP_CONTEXTPOPUP = &H8
- Global Const HELP_FORCEFILE = &H9
- Global Const HELP_KEY = &H101 'Display topic for keyword in offabData
- Global Const HELP_COMMAND = &H102
- Global Const HELP_PARTIALKEY = &H105 'call the search engine in winhelp
-
-
- '
- ' Data Access constants
- '
- 'Data control
- 'Error event Response arguments
- Global Const DATA_ERRCONTINUE = 0
- Global Const DATA_ERRDISPLAY = 1
-
- 'Editmode property values
- Global Const DATA_EDITNONE = 0
- Global Const DATA_EDITMODE = 1
- Global Const DATA_EDITADD = 2
-
- ' Options property values
- Global Const DATA_DENYWRITE = &H1
- Global Const DATA_DENYREAD = &H2
- Global Const DATA_READONLY = &H4
- Global Const DATA_APPENDONLY = &H8
- Global Const DATA_INCONSISTENT = &H10
- Global Const DATA_CONSISTENT = &H20
- Global Const DATA_SQLPASSTHROUGH = &H40
-
-
- 'Validate event Action arguments
- Global Const DATA_ACTIONCANCEL = 0
- Global Const DATA_ACTIONMOVEFIRST = 1
- Global Const DATA_ACTIONMOVEPREVIOUS = 2
- Global Const DATA_ACTIONMOVENEXT = 3
- Global Const DATA_ACTIONMOVELAST = 4
- Global Const DATA_ACTIONADDNEW = 5
- Global Const DATA_ACTIONUPDATE = 6
- Global Const DATA_ACTIONDELETE = 7
- Global Const DATA_ACTIONFIND = 8
- Global Const DATA_ACTIONBOOKMARK = 9
- Global Const DATA_ACTIONCLOSE = 10
- Global Const DATA_ACTIONUNLOAD = 11
-
-
-
- ' Option argument values (CreateDynaset, etc)
- Global Const DB_DENYWRITE = &H1
- Global Const DB_DENYREAD = &H2
- Global Const DB_READONLY = &H4
- Global Const DB_APPENDONLY = &H8
- Global Const DB_INCONSISTENT = &H10
- Global Const DB_CONSISTENT = &H20
- Global Const DB_SQLPASSTHROUGH = &H40
-
- ' SetDataAccessOption
- Global Const DB_OPTIONINIPATH = 1
-
- ' Field Attributes
- Global Const DB_FIXEDFIELD = &H1
- Global Const DB_VARIABLEFIELD = &H2
- Global Const DB_AUTOINCRFIELD = &H10
- Global Const DB_UPDATABLEFIELD = &H20
-
- ' Field Data Types
- Global Const DB_BOOLEAN = 1
- Global Const DB_BYTE = 2
- Global Const DB_INTEGER = 3
- Global Const DB_LONG = 4
- Global Const DB_CURRENCY = 5
- Global Const DB_SINGLE = 6
- Global Const DB_DOUBLE = 7
- Global Const DB_DATE = 8
- Global Const DB_TEXT = 10
- Global Const DB_LONGBINARY = 11
- Global Const DB_MEMO = 12
-
- ' TableDef Attributes
- Global Const DB_ATTACHEXCLUSIVE = &H10000
- Global Const DB_ATTACHSAVEPWD = &H20000
- Global Const DB_SYSTEMOBJECT = &H80000002
- Global Const DB_ATTACHEDTABLE = &H40000000
- Global Const DB_ATTACHEDODBC = &H20000000
-
- ' ListTables TableType
- Global Const DB_TABLE = 1
- Global Const DB_QUERYDEF = 5
-
- ' ListTables Attributes (for QueryDefs)
- Global Const DB_QACTION = &HF0
- Global Const DB_QCROSSTAB = &H10
- Global Const DB_QDELETE = &H20
- Global Const DB_QUPDATE = &H30
- Global Const DB_QAPPEND = &H40
- Global Const DB_QMAKETABLE = &H50
-
- ' ListIndexes IndexAttributes values
- Global Const DB_UNIQUE = 1
- Global Const DB_PRIMARY = 2
- Global Const DB_PROHIBITNULL = 4
- Global Const DB_IGNORENULL = 8
- ' ListIndexes FieldAttributes value
- Global Const DB_DESCENDING = 1 'For each field in Index
-
- ' CreateDatabase and CompactDatabase Language constants
- Global Const DB_LANG_GENERAL = ";LANGID=0x0809;CP=1252;COUNTRY=0"
- Global Const DB_LANG_SPANISH = ";LANGID=0x040A;CP=1252;COUNTRY=0"
- Global Const DB_LANG_DUTCH = ";LANGID=0x0413;CP=1252;COUNTRY=0"
- Global Const DB_LANG_SWEDFIN = ";LANGID=0x040C;CP=1252;COUNTRY=0" 'VB3 and Access 1.1 Databases
- Global Const DB_LANG_NORWDAN = ";LANGID=0x0414;CP=1252;COUNTRY=0" 'VB3 and Access 1.1 Databases
- Global Const DB_LANG_ICELANDIC = ";LANGID=0x040F;CP=1252;COUNTRY=0" 'VB3 and Access 1.1 Databases
- Global Const DB_LANG_NORDIC = ";LANGID=0x041D;CP=1252;COUNTRY=0" 'Access 1.0 Databases only
-
- ' CreateDatabase and CompactDatabase options
- Global Const DB_VERSION10 = 1 ' Microsoft Access Version 1.0
- Global Const DB_ENCRYPT = 2 ' Make database encrypted.
- Global Const DB_DECRYPT = 4 ' Decrypt database while compacting.
-
- 'Collating order values
- Global Const DB_SORTGENERAL = 256 ' Sort by EFGPI rules (English, French, German,Portuguese, Italian)
- Global Const DB_SORTSPANISH = 258 ' Sort by Spanish rules
- Global Const DB_SORTDUTCH = 259 ' Sort by Dutch rules
- Global Const DB_SORTSWEDFIN = 260 ' Sort by Swedish, Finnish rules
- Global Const DB_SORTNORWDAN = 261 ' Sort by Norwegian, Danish rules
- Global Const DB_SORTICELANDIC = 262 ' Sort by Icelandic rules
- Global Const DB_SORTPDXINTL = 4096 ' Sort by Paradox international rules
- Global Const DB_SORTPDXSWE = 4097 ' Sort by Paradox Swedish, Finnish rules
- Global Const DB_SORTPDXNOR = 4098 ' Sort by Paradox Norwegian, Danish rules
- Global Const DB_SORTUNDEFINED = -1 ' Sort rules are undefined or unknown
-
-
- Global Const FRERR_FINDREPLACECODES = &H3FFF
- Global Const CCERR_CHOOSECOLORCODES = &H2FFF
-
- ' MousePointer
- Global Const DEFAULT = 0 ' 0 - Default
- Global Const ARROW = 1 ' 1 - Arrow
- Global Const CROSSHAIR = 2 ' 2 - Cross
- Global Const IBEAM = 3 ' 3 - I-Beam
- Global Const ICON_POINTER = 4 ' 4 - Icon
- Global Const SIZE_POINTER = 5 ' 5 - Size
- Global Const SIZE_NE_SW = 6 ' 6 - Size NE SW
- Global Const SIZE_N_S = 7 ' 7 - Size N S
- Global Const SIZE_NW_SE = 8 ' 8 - Size NW SE
- Global Const SIZE_W_E = 9 ' 9 - Size W E
- Global Const UP_ARROW = 10 ' 10 - Up Arrow
- Global Const HOURGLASS = 11 ' 11 - Hourglass
- Global Const NO_DROP = 12 ' 12 - No drop
-
-
- Global Const CASCADE = 0 'Cascade all non-minimized MDI child forms.
- Global Const TILE_HORIZONTAL = 1 'Tile all non-minimized MDI child forms horizontally.
- Global Const TILE_VERTICAL = 2 'Tile all non-minimized MDI child forms vertically.
- Global Const ARRANGE_ICONS = 3 'Arrange icons for minimized MDI child forms.
-
-