home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 June / PCWorld_2002-06_cd.bin / Software / Komercni / xbase / express / exd17208.r04 / exp17 / Include / Dcfields.ch < prev    next >
Text File  |  2002-01-30  |  2KB  |  50 lines

  1. /*
  2.  ╓────────────────────────────────────────────────────╖
  3.  ║  Program..: DCFIELDS.CH                            ║
  4.  ║  Author...: Roger J. Donnay                        ║
  5.  ║  Notice...: (c) DONNAY Software Designs 1987-2000  ║
  6.  ║  Date.....: Oct 22, 2000                           ║
  7.  ║  Notes....: defines for dCLIP fields array system  ║
  8.  ╙────────────────────────────────────────────────────╜
  9. */
  10.  
  11. /* -- Defines for aFIELDS subarray -- */
  12.  
  13. #define DCFLDGROUP_NAME  1      // Name of Field Group
  14. #define DCFLDGROUP_ALIAS 2      // Database Alias of Field Group
  15. #define DCFLDGROUP_DESC  3      // Description of Field Group
  16.  
  17. #define DCFLD_NAME       1      // Field Name or Expression
  18. #define DCFLD_TYPE       2      // Field Type
  19. #define DCFLD_LEN        3      // Field Length
  20. #define DCFLD_DEC        4      // Field Decimals
  21. #define DCFLD_DESC       5      // Field Descriptor
  22. #define DCFLD_ALIAS      6      // Field Alias
  23. #define DCFLD_PROMPT     7      // Field Prompt
  24. #define DCFLD_PICT       8      // Field Picture (default)
  25. #define DCFLD_VALTYPE    9      // Field Validation Type
  26. #define DCFLD_DEFAULT   10      // Field Default value
  27. #define DCFLD_WHEN      11      // When code block (enable())
  28. #define DCFLD_PROTECT   12      // Protect code block
  29. #define DCFLD_VALID     13      // Field Valid Clause or Formula
  30. #define DCFLD_EMPTY     14      // Empty Value Allowed
  31. #define DCFLD_EDIT      15      // Editing Allowed
  32. #define DCFLD_ACCESS    16      // Access Code
  33. #define DCFLD_SORT      17      // Sorting element
  34. #define DCFLD_HELPCODE  18      // Help Code
  35. #define DCFLD_VALUE     19      // Place to store Old Field Value
  36. #define DCFLD_OLDNAME   20      // Old field name
  37. #define DCFLD_OLDTYPE   21      // Old field type
  38. #define DCFLD_ENCRYPT   22      // Encryption password
  39. #define DCFLD_PROGRAM   23      // Program Validation (memo)
  40. #define DCFLD_FLAG      24      // Logical flag
  41. #define DCFLD_COMPILE   25      // Compile Code Block
  42. #define DCFLD_FONT      26      // Default Font
  43. #define DCFLD_TOOLTIP   27      // ToolTip
  44. #define DCFLD_CARGO     28      // Cargo Array
  45. #define DCFLD_ORDER     29      // Order in Database
  46. #define DCFLD_POPUP     30      // PopUp Code Block
  47.  
  48. #define DCFLD_ARRAY_SIZE    30
  49.  
  50.