home *** CD-ROM | disk | FTP | other *** search
/ ftp.alaska-software.com / 2014.06.ftp.alaska-software.com.tar / ftp.alaska-software.com / acsn / BusiCalc_v1-40.Zip / BusiCalc.ch < prev    next >
Text File  |  2002-10-06  |  4KB  |  143 lines

  1. // busicalc.ch for v1.40
  2. STATIC bSaveErrorBlock
  3.  
  4. #ifndef CRLF
  5. #define CRLF Chr(13)+Chr(10)
  6. #endif
  7.  
  8. #ifndef SW_SHOW_NORMAL
  9. #define SW_SHOW_NORMAL 1
  10. #endif
  11.  
  12. #ifndef COL_PX
  13. #define COL_PX  10
  14. #define ROW_PX  20
  15. #endif
  16.  
  17. #define EXCLAIM           0002
  18. #define EURO              0003
  19. #define HAND_CUR          0100
  20. #define GJDLOGO           0150
  21. #define PB_PND_EUR        0200
  22. #define PB_DLR_PND        0300
  23. #define PB_DLR_EUR        0400
  24. #define PB_SET_RATE       0500
  25. #define PB_SET_DEC        0600
  26. #define PB_PLUS           0700
  27. #define PB_MINUS          0800
  28. #define PB_MULTIPLY       0900
  29. #define PB_DIVIDE         1000
  30. #define PB_EQUALS_ENA     1100
  31. #define PB_EQUALS_DIS     1101
  32. #define PB__0_ENA         1200
  33. #define PB__0_DIS         1201
  34. #define PB__1_ENA         1300
  35. #define PB__1_DIS         1301
  36. #define PB__2_ENA         1400
  37. #define PB__2_DIS         1401
  38. #define PB__3_ENA         1500
  39. #define PB__3_DIS         1501
  40. #define PB__4_ENA         1600
  41. #define PB__4_DIS         1601
  42. #define PB__5_ENA         1700
  43. #define PB__5_DIS         1701
  44. #define PB__6_ENA         1800
  45. #define PB__6_DIS         1801
  46. #define PB__7_ENA         1900
  47. #define PB__7_DIS         1901
  48. #define PB__8_ENA         2000
  49. #define PB__8_DIS         2001
  50. #define PB__9_ENA         2100
  51. #define PB__9_DIS         2101
  52. #define PB_POINT_ENA      2200
  53. #define PB_POINT_DIS      2201
  54. #define PB_CLEAR_ACCUM    2300
  55. #define PB_CLEAR_ENTRY    2400
  56. #define PB_MEM_CLEAR      2500
  57. #define PB_PND_TO_EUR     2601
  58. #define PB_PND_TO_DLR     2602
  59. #define PB_DLR_TO_EUR     2603
  60. #define PB_EUR_TO_PND     2701
  61. #define PB_DLR_TO_PND     2702
  62. #define PB_EUR_TO_DLR     2703
  63. #define PB_NEGATE         2800
  64. #define PB_PERCENT        2900
  65. #define PB_N_FACTORIAL    2950
  66. #define PB_RECIPROCAL     3000
  67. #define PB_PI             3050
  68. #define PB_SQR_ROOT       3100
  69. #define PB_NTH_ROOT       3150
  70. #define PB_SQUARED        3200
  71. #define PB_NTH_POWER      3250
  72. #define PB_MEM_ADD        3500
  73. #define PB_MEM_SUB        3600
  74. #define PB_MEM_RECALL     3700
  75. #define PB_BSPACE_ENA     3800
  76. #define PB_BSPACE_DIS     3801
  77. #define PB_PASTE          3900
  78. #define PB_COPY           3901
  79. #define MAIN_DISPLAY      4000
  80. #define MEM_DISPLAY       4001
  81. #define AUX_DISPLAY       4002
  82. #define PB_OPEN_UP        5000
  83. #define PB_MIN_SPACE      5001
  84. #define PB_L_BRACKET      5010
  85. #define PB_L_BRACKET_DIS  5011
  86. #define PB_R_BRACKET      5012
  87. #define PB_R_BRACKET_ENA  5013
  88. #define BM_L_BRACKET      5020
  89. #define BM_R_BRACKET      5022
  90. #define WHITE_BLANK       6000
  91. #define NO_1              6001
  92. #define NO_2              6002
  93. #define NO_3              6003
  94. #define NO_4              6004
  95. #define NO_5              6005
  96. #define NO_6              6006
  97. #define NO_7              6007
  98. #define NO_8              6008
  99. #define NO_9              6009
  100. #define NO_10             6010
  101. #define NO_11             6011
  102. #define NO_12             6012
  103. #define NO_13             6013
  104. #define NO_14             6014
  105. #define NO_15             6015
  106. #define NO_16             6016
  107. #define BUSICALC          9000
  108. #define PB_SET            9001
  109. #define PB_HELP           9004
  110. #define PB_INFO           9005
  111. #define PB_CLOSE          9006
  112. #define PB_CLOSE_1E       9007
  113. #define PB_NEXT_0E        9008
  114. #define PB_PREV_0E        9009
  115. #define PB_VALIDATE       9010
  116. #define PB_SAVE_1E        9011
  117. #define BUSICALC_HA       9100
  118. #define BM_NIL_BLANK     10000
  119. #define BM_EUR           10200
  120. #define BM_DLR           10300
  121. #define BM_PND           10400
  122. ***** SEE PROGRAMMING NOTE IN ElseIf Chr(nKey) = '='
  123. ***** REGARDING BM IDs HIGHER THAN BM_PLUS
  124. #define BM_PLUS          10700
  125. #define BM_MINUS         10800
  126. #define BM_MULTIPLY      10900
  127. #define BM_DIVIDE        11000
  128. #define BM_EQUALS        11100
  129. #define BM_PND_TO_EUR    12601
  130. #define BM_DLR_TO_EUR    12602
  131. #define BM_DLR_TO_PND    12603
  132. #define BM_EUR_TO_PND    12701
  133. #define BM_EUR_TO_DLR    12702
  134. #define BM_PND_TO_DLR    12703
  135. #define BM_NEGATE        12800
  136. #define BM_PERCENT       12900
  137. #define BM_RECIP         13000
  138. #define BM_SQR_ROOT      13100
  139. #define BM_NTH_ROOT      13101
  140. #define BM_SQUARED       13200
  141. #define BM_NTH_POWER     13201
  142. #define BM_N_FACTORIAL   13300
  143.