home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / mm / shortcf / mcistrng / mcistrng.rc < prev   
Text File  |  1999-05-11  |  3KB  |  152 lines

  1. /*************************************************************************
  2.  * File Name   : MCISTRNG.RC
  3.  *
  4.  * Description : This is the resource file for the MCISTRNG program.
  5.  *
  6.  * Concepts    : See the C source file for this program.
  7.  *
  8.  * MMPM/2 API's: See the C source file for this program.
  9.  *
  10.  * Required
  11.  *    Files    : See the C source file for this program.
  12.  *
  13.  * Copyright (C) IBM 1991, 1993
  14.  *************************************************************************/
  15.  
  16. #define  INCL_WIN
  17. #define  INCL_PM
  18. #define  INCL_DOS
  19. #include <os2.h>
  20.  
  21. #include "MCISTRNG.H"
  22.  
  23. RCINCLUDE MCISTRNG.DLG
  24.  
  25. ICON ID_ICON MCISTRNG.ICO
  26.  
  27. /*
  28.  * Help Table Definitions.
  29.  *
  30.  * The help table definition for the dialog windows.
  31.  * - Main
  32.  */
  33.  
  34. HELPTABLE ID_MCI_STRING_HELPTABLE
  35. {
  36.     HELPITEM ID_MAIN_DIALOG_BOX,      0,                   0
  37.     HELPITEM ID_MESSAGE_BOX,          SUBTABLE_MESSAGEBOX, ID_MESSAGE_BOX
  38. }
  39.  
  40. HELPSUBTABLE SUBTABLE_MESSAGEBOX
  41. {
  42. }
  43.  
  44. /*
  45.  * String Table Definition.
  46.  */
  47. STRINGTABLE
  48. {
  49.    IDS_MAIN_WINDOW_TITLE,
  50.    "Media Control Interface String Test"
  51.  
  52.    IDS_MAIN_HELP_WINDOW_TITLE,
  53.    "String Test Help Window"
  54.  
  55.    IDS_NORMAL_ERROR_MESSAGE_BOX_TEXT,
  56.    "String Test Error"
  57.  
  58.    IDS_MAIN_HELP_CREATION_FAILED,
  59.    "Help could not be initialized for the Media Control "
  60.    "Interface String Test window.  Help will not be "
  61.    "available."
  62.  
  63.    IDS_MAIN_HELP_LIBRARY_FILE,
  64.    "MCISTRNG.HLP"
  65.  
  66.    IDS_MCI_STRING_HAS_NO_SIZE,
  67.    "The Send String entry field is blank.  Please type a valid string "
  68.    "command and retry."
  69.  
  70.    IDS_MCI_GETTING_STRING_ERROR_FAILED,
  71.    "The specified string command was not a valid command. "
  72.    "Please type a valid string command and retry."
  73.  
  74.    IDS_ALL_CHECKBOXES_ARE_FALSE,
  75.    "No check boxes are selected.  No notification messages will be displayed "
  76.    "in the Display Messages dialog window."
  77.  
  78.    IDS_MM_MCINOTIFY,
  79.    "MM_MCINOTIFY"
  80.  
  81.    IDS_MM_MCIPASSDEVICE,
  82.    "MM_MCIPASSDEVICE"
  83.  
  84.    IDS_MM_MCIPOSITIONCHANGE,
  85.    "MM_MCIPOSITIONCHANGE"
  86.  
  87.    IDS_MM_MCIEVENT,
  88.    "MM_MCIEVENT"
  89.  
  90.    IDS_MM_MCICUEPOINT,
  91.    "MM_MCICUEPOINT"
  92.  
  93.    IDS_MM_MCIPLAYLISTMESSAGE,
  94.    "MM_MCIPLAYLISTMESSAGE"
  95.  
  96.    IDS_MCI_NOTIFY_SUCCESSFUL,
  97.    "   MCI_NOTIFY_SUCCESSFUL"
  98.  
  99.    IDS_MCI_NOTIFY_SUPERSEDED,
  100.    "   MCI_NOTIFY_SUPERSEDED"
  101.  
  102.    IDS_MCI_NOTIFY_ABORTED,
  103.    "   MCI_NOTIFY_ABORTED"
  104.  
  105.    IDS_MCI_NOTIFY_ERROR,
  106.    "   MCI_NOTIFY_ERROR = "
  107.  
  108.    IDS_DEVICE_ID
  109.    "   Device ID = "
  110.  
  111.    IDS_USER_PARM
  112.    "   User parameter = "
  113.  
  114.    IDS_GAINING_USE
  115.    "   Gaining use of device"
  116.  
  117.    IDS_LOSING_USE
  118.    "   Losing use of device"
  119.  
  120.    IDS_TIME
  121.    "   Time = "
  122.  
  123.    IDS_CMD_MSG
  124.    "   Command message was "
  125.  
  126.    IDS_DEFAULTSIZE
  127.    "~Default Size"
  128.  
  129.    IDS_RETURN_STRING
  130.    "Return string = "
  131.  
  132.    IDS_UNKNOWN
  133.    " UNKNOWN"
  134.  
  135.    IDS_CONTINUE_BATCHFILE
  136.    "  Select 'Yes' to continue processing the string command batch file, or "
  137.    "select 'No' to quit processing it."
  138.  
  139.    IDS_END_OF_BATCH_FILE
  140.    "Completed processing the string command batch file."
  141.  
  142.    IDS_CANNOT_FIND_BATCH_FILE
  143.    "Cannot find string command batch file.  Ensure that the batch file "
  144.    "exists and retry."
  145.  
  146.    IDS_OPEN_BATCHFILE_TITLE
  147.    "String test - Open and execute a batch file"
  148.  
  149.    IDS_OPEN_BATCHFILE_BUTTON
  150.    "Execute batch file"
  151. }
  152.