home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / novell / win31 / powin30 / sumsc_nl.001 / WPCIWIN.TXT < prev    next >
Text File  |  1994-12-09  |  2KB  |  56 lines

  1. '---------------------------------------------------------------------------
  2. ' File  : WPCIWIN.TXT
  3. ' Title : Visual Basic Declares File
  4. ' Desc  : This file contains the Visual Basic declarations for the WordPerfect
  5. '            Command    Interface functions.
  6. ' Tabs  : column 5 every 4
  7.  
  8. ' Copyright (C) 1994 WordPerfect Corp., All Rights Reserved 
  9. '
  10. ' You have a royalty-free right to use, modify, reproduce and distribute
  11. ' the VB Declares Files (and/or any modified version) in any way
  12. ' you find useful, provided that you agree that WordPerfect Co. has no warranty,
  13. ' obligation or liability for any VB Declares File.
  14. '---------------------------------------------------------------------------
  15. '
  16. 'Set these up as CONST for the VB file
  17.  
  18. 'Constants for the PSVariableType property
  19. Const PS_STRING_TYPE = 0
  20. Const PS_INTEGER_TYPE = 1
  21. Const PS_FLOAT_TYPE = 2
  22.  
  23. 'Constants for the ScriptType property
  24. Const PS_TEMPLATE_SCRIPT = 0
  25. Const PS_FILE_SCRIPT = 1
  26.  
  27. 'Constants for the ExistsResult property
  28. Const PS_VAR_NOT_EXISTS = 0
  29. Const PS_VAR_EXISTS = 1
  30.  
  31. 'Constants for the CommandTargetApp property
  32. Const WORDPERFECT = "WordPerfect"
  33. Const GROUPWISE = "WPOffice"
  34. Const PRESENTATIONS = "WPPrWin"
  35. Const QUATTRO_PRO = "QuattroPro"
  36.  
  37. 'Constants for the Action property
  38. Const PS_ACTION_PLAYSCRIPT = 1
  39. Const PS_ACTION_GETVARIABLE = 2
  40. Const PS_ACTION_SETVARIABLE = 3
  41. Const PS_ACTION_DELVARIABLE = 4
  42. Const PS_ACTION_EXISTSVARIABLE = 5
  43.  
  44. 'CommandError value constants
  45. Const NO_ERROR = 0
  46. Const COMMAND_NOT_FOUND = 1
  47. Const INVALID_APP_PROPERTY = 2
  48. Const COMMAND_TOO_LARGE = 3
  49. Const NO_PRODUCTS_FOUND = 4
  50. Const COMMAND_SYNTAX_ERROR = 5
  51. Const PRODUCT_NOT_RESPONDING = 6
  52. Const MACRO_OR_TEMPLATE_NOT_FOUND = 7
  53. Const VARIABLE_ERROR = 8
  54. Const PERFECTSCRIPT_SYSTEM_ERROR = 9
  55. Const PID_NOT_ENABLED = 10
  56.