home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c016 / 3.ddi / COMMEX.PAK / TERMAPP.RH < prev    next >
Encoding:
Text File  |  1993-12-08  |  4.0 KB  |  151 lines

  1. //----------------------------------------------------------------------------
  2. // Borland Visual Solutions Pack
  3. // (C) Copyright 1993 by Borland International
  4. //----------------------------------------------------------------------------
  5.  
  6. #ifndef __termapp_RH                // Sentry use file only if it's not already included.
  7. #define __termapp_RH
  8.  
  9. //
  10. // CM_FILEnnnn commands defined in 'include\owl\editfile.rh' except for
  11. // CM_FILEPRINTPREVIEW.
  12. //
  13. #define CM_MDIFILENEW       24331
  14. #define CM_MDIFILEOPEN      24332
  15. #define CM_FILECLOSE        24339
  16. #define CM_FILESAVE         24333
  17. #define CM_FILESAVEAS       24334
  18.  
  19. //
  20. // Window commands defined in 'include\owl\windows.rh'.
  21. //
  22. #define CM_EXIT             24310
  23.  
  24. //
  25. // Windows menu commands defined in 'include\owl\mdi.rh'.
  26. //
  27. #define CM_CASCADECHILDREN   24361
  28. #define CM_TILECHILDREN      24362
  29. #define CM_TILECHILDRENHORIZ 24363
  30. #define CM_ARRANGEICONS      24364
  31. #define CM_CLOSECHILDREN     24365
  32. #define CM_CREATECHILD       24366
  33.  
  34. //
  35. // Help menu commands (defined nowhere in OWL).
  36. //
  37. #define CM_HELPABOUT        24389
  38.  
  39. //
  40. // Accelerator IDs
  41. //
  42. #define IDA_EDITFILE        32550
  43.  
  44. //
  45. // About Dialogs
  46. //
  47. #define IDD_ABOUT        22000
  48. #define IDD_SETTINGS     22001
  49. #define IDC_VERSION         100
  50. #define IDC_COPYRIGHT       200
  51. #define IDC_DEBUG           300
  52.  
  53. //
  54. // Application specific definitions:
  55. //
  56. #define IDI_SAXAPPLICATION     101             // Application icon
  57. #define IDI_DOC             102             // MDI child window icon
  58.  
  59. #define IDM_MENU            100             // Menu resource ID
  60. #define CM_PHONESETTINGS    1014
  61. #define CM_PHONEDISCONNECT    1012
  62. #define CM_FILEDOWNLOAD       2
  63. #define CM_FILEUPLOAD       1
  64.  
  65. //
  66. // OWL defined strings
  67. //
  68. #define IDS_UNTITLED        32503
  69.  
  70. //
  71. // General & application exception messages
  72. //
  73. #define IDS_UNKNOWNEXCEPTION    32767
  74. #define IDS_OWLEXCEPTION        32766
  75. #define IDS_OKTORESUME          32765
  76. #define IDS_UNHANDLEDXMSG       32764
  77. #define IDS_UNKNOWNERROR        32763
  78. #define IDS_NOAPP               32762
  79. #define IDS_OUTOFMEMORY         32761
  80. #define IDS_INVALIDMODULE       32760
  81. #define IDS_INVALIDMAINWINDOW   32759
  82. // Owl 1 compatibility messages
  83. #define IDS_INVALIDWINDOW       32756
  84. #define IDS_INVALIDCHILDWINDOW  32755
  85. #define IDS_INVALIDCLIENTWINDOW 32754
  86. // TXWindow messages
  87. #define IDS_CLASSREGISTERFAIL   32749
  88. #define IDS_CHILDREGISTERFAIL   32748
  89. #define IDS_WINDOWCREATEFAIL    32747
  90. #define IDS_WINDOWEXECUTEFAIL   32746
  91. #define IDS_CHILDCREATEFAIL     32745
  92.  
  93. #define IDS_MENUFAILURE         32744
  94. #define IDS_VALIDATORSYNTAX     32743
  95. #define IDS_PRINTERERROR        32742
  96. // TXGdi messages
  97. #define IDS_GDIFAILURE          32739
  98. #define IDS_GDIALLOCFAIL        32738
  99. #define IDS_GDICREATEFAIL       32737
  100. #define IDS_GDIRESLOADFAIL      32736
  101. #define IDS_GDIFILEREADFAIL     32735
  102. #define IDS_GDIDELETEFAIL       32734
  103. #define IDS_GDIDESTROYFAIL      32733
  104. #define IDS_INVALIDDIBHANDLE    32732
  105.  
  106.  
  107. // TInputDialog DIALOG resource
  108. #define IDD_INPUTDIALOG     32514
  109. #define ID_PROMPT           4091
  110. #define ID_INPUT            4090
  111.  
  112.  
  113. // TSlider bitmaps (horizontal and vertical)
  114. //#define IDB_HSLIDERTHUMB    32000
  115. //#define IDB_VSLIDERTHUMB    32001
  116.  
  117.  
  118. // Validation messages
  119. #define IDS_VALPXPCONFORM   32520
  120. #define IDS_VALINVALIDCHAR  32521
  121. #define IDS_VALNOTINRANGE   32522
  122. #define IDS_VALNOTINLIST    32523
  123.  
  124. #define IDC_BAUD110    11
  125. #define IDC_BAUD600    13
  126. #define IDC_BAUD1200    14
  127. #define IDC_BAUD2400    15
  128. #define IDC_BAUD4800    16
  129. #define IDC_BAUD9600    17
  130. #define IDC_BAUD19200    18
  131. #define IDC_DATA5    22
  132. #define IDC_DATA6    23
  133. #define IDC_DATA7    24
  134. #define IDC_DATA8    25
  135. #define IDC_STOP1    31
  136. #define IDC_STOP15    32
  137. #define IDC_STOP2    33
  138. #define IDC_PARITYNONE    41
  139. #define IDC_PARITYODD    42
  140. #define IDC_PARITYEVEN    43
  141. #define IDC_PARITYMARK    44
  142. #define IDC_PARITYSPACE    45
  143. #define IDC_HANDSHAKINGXONXOFF    51
  144. #define IDC_HANDSHAKINGHARDWARE    52
  145. #define IDC_HANDSHAKINGNONE    53
  146. #define IDC_PORTLIST    61
  147. #define IDC_BAUD300    12
  148.  
  149.  
  150. #endif         // __termapp_RH sentry.
  151.