home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1995 October / SUPERCD.BIN / PCPLUS / VBWK / VBSPY / VBSPY.ZIP / VBSPY.GLB < prev    next >
Encoding:
Text File  |  1994-11-20  |  2.7 KB  |  68 lines

  1. '---Global Constants for VB SPY  1.0
  2. '---Extracted from contsnts.txt
  3. ' Show parameters
  4. Global Const MODAL = 1
  5. Global Const MODELESS = 0
  6.  
  7.  
  8. ' MousePointer
  9. Global Const DEFAULT = 0        ' 0 - Default
  10. Global Const HOURGLASS = 11     ' 11 - Hourglass
  11. ' WindowState
  12. Global Const NORMAL = 0    ' 0 - Normal
  13. Global Const MINIMIZED = 1 ' 1 - Minimized
  14. Global Const MAXIMIZED = 2 ' 2 - Maximized
  15.  
  16. ' Check Value
  17. Global Const UNCHECKED = 0 ' 0 - Unchecked
  18. Global Const CHECKED = 1   ' 1 - Checked
  19. Global Const GRAYED = 2    ' 2 - Grayed
  20.  
  21. ' Function Parameters
  22. ' MsgBox parameters
  23. Global Const MB_OK = 0                 ' OK button only
  24. Global Const MB_OKCANCEL = 1           ' OK and Cancel buttons
  25. Global Const MB_ABORTRETRYIGNORE = 2   ' Abort, Retry, and Ignore buttons
  26. Global Const MB_YESNOCANCEL = 3        ' Yes, No, and Cancel buttons
  27. Global Const MB_YESNO = 4              ' Yes and No buttons
  28. Global Const MB_RETRYCANCEL = 5        ' Retry and Cancel buttons
  29.  
  30. Global Const MB_ICONSTOP = 16          ' Critical message
  31. Global Const MB_ICONQUESTION = 32      ' Warning query
  32. Global Const MB_ICONEXCLAMATION = 48   ' Warning message
  33. Global Const MB_ICONINFORMATION = 64   ' Information message
  34.  
  35. Global Const MB_APPLMODAL = 0          ' Application Modal Message Box
  36. Global Const MB_DEFBUTTON1 = 0         ' First button is default
  37. Global Const MB_DEFBUTTON2 = 256       ' Second button is default
  38. Global Const MB_DEFBUTTON3 = 512       ' Third button is default
  39. Global Const MB_SYSTEMMODAL = 4096      'System Modal
  40.  
  41. ' MsgBox return values
  42. Global Const IDOK = 1                  ' OK button pressed
  43. Global Const IDCANCEL = 2              ' Cancel button pressed
  44. Global Const IDABORT = 3               ' Abort button pressed
  45. Global Const IDRETRY = 4               ' Retry button pressed
  46. Global Const IDIGNORE = 5              ' Ignore button pressed
  47. Global Const IDYES = 6                 ' Yes button pressed
  48. Global Const IDNO = 7                  ' No button pressed
  49.  
  50.  
  51. 'Help Constants
  52. Global Const HELP_CONTEXT = &H1           'Display topic in ulTopic
  53. Global Const HELP_QUIT = &H2              'Terminate help
  54. Global Const HELP_INDEX = &H3             'Display index
  55. Global Const HELP_CONTENTS = &H3
  56. Global Const HELP_HELPONHELP = &H4        'Display help on using help
  57. Global Const HELP_SETINDEX = &H5          'Set the current Index for multi index help
  58. Global Const HELP_SETCONTENTS = &H5
  59. Global Const HELP_CONTEXTPOPUP = &H8
  60. Global Const HELP_FORCEFILE = &H9
  61. Global Const HELP_KEY = &H101             'Display topic for keyword in offabData
  62. Global Const HELP_COMMAND = &H102
  63. Global Const HELP_PARTIALKEY = &H105      'call the search engine in winhelp
  64.  
  65. 'Added for CMDIALOG.VBX
  66. Global Const CDERR_CANCEL = &H7FF3
  67.  
  68.