home *** CD-ROM | disk | FTP | other *** search
/ IBM CD Showcase / OS2_CD_ROM.iso / smce0001 / builder / tutor / ublib / uttleng.hlp (.txt) < prev    next >
Encoding:
OS/2 Help File  |  1993-11-01  |  202.3 KB  |  8,868 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. Unknown character found. ΓòÉΓòÉΓòÉ
  3.  
  4. ERROR: An unrecognized character was found outside of a quoted string. 
  5.  
  6. CAUSE: Possible causes are: 
  7.  
  8. o Quotes have been misplaced. 
  9.  
  10. o The character string includes special characters that must be inside single 
  11.   or double quotes. 
  12.  
  13. ACTION: Correct the instruction and run it again. 
  14.  
  15.  
  16. ΓòÉΓòÉΓòÉ 2. Symbol is not an acceptable name or numeric value. ΓòÉΓòÉΓòÉ
  17.  
  18. ERROR: You are using an unacceptable character in a name or number. The program 
  19. expected a name that begins with an alphabetic character (A-Z, a-z), 
  20. underscore, !, # or @. The name can include alphabetic characters, underscore, 
  21. !, and the digits 0-9 after the first character. For example, Fred_3 is an 
  22. acceptable name. 
  23.  
  24. A number can begin with a digit or a decimal point and may contain digits and a 
  25. decimal point. 
  26.  
  27. CAUSE: Possible causes are: 
  28.  
  29. o A typographical error in a name or number. 
  30.  
  31. o Quotes are missing from a name or number in a character string. 
  32.  
  33. o The name or numeric value includes special characters that should be inside 
  34.   single or double quotes. 
  35.  
  36. ACTION: Correct the name or number in your instruction and run it again. 
  37.  
  38.  
  39. ΓòÉΓòÉΓòÉ 3. Token table full ΓòÉΓòÉΓòÉ
  40.  
  41. ERROR: The number of tokens in your story exceeds the capacity of the table. 
  42.  
  43. CAUSE: Your story contains more instructions and symbols than the tokenizer can 
  44. handle. 
  45.  
  46. ACTION: Split the story into smaller stories in order to reduce the size of the 
  47. token table 
  48.  
  49.  
  50. ΓòÉΓòÉΓòÉ 4. End comment delimiter outside of comment. ΓòÉΓòÉΓòÉ
  51.  
  52. ERROR: You have an end comment delimiter (*/) outside of a comment. 
  53.  
  54. CAUSE: Each comment must be a matched pair of comment delimiters. For example: 
  55.  
  56.     /* this is a comment example */
  57. Possible causes are: 
  58.  
  59. o You left out the begin comment delimiter (/*). 
  60.  
  61. o You accidentally made two end comment delimiters (*/). 
  62.  
  63. ACTION: Check the comment delimiters in your instruction and rerun. 
  64.  
  65.  
  66. ΓòÉΓòÉΓòÉ 5. Missing ending quote. ΓòÉΓòÉΓòÉ
  67.  
  68. ERROR: You entered a quoted string without ending it properly. 
  69.  
  70. CAUSE: A string must begin and end with the same type of quote. 
  71.  
  72. Possible causes are: 
  73.  
  74. o The end quote is missing or is on the next line. 
  75.  
  76.   A quoted string cannot extend beyond the end of a line. 
  77.  
  78. o The quote characters at the beginning and end of the string are not the same 
  79.   type. 
  80.  
  81.   A quoted string must begin and end with a single or double quote. For 
  82.   example: 
  83.  
  84.        "this is OK"
  85.        'this is also OK'
  86.  
  87. o A quote within the string is the same type as your beginning and ending 
  88.   quote. 
  89.  
  90.   In this situation specify the embedded quote twice. For example: 
  91.  
  92.        'An embedded quote is in this string''s syntax'
  93.  
  94. ACTION: Correct the quoted string and rerun the instruction 
  95.  
  96.  
  97. ΓòÉΓòÉΓòÉ 6. Name expected. ΓòÉΓòÉΓòÉ
  98.  
  99. ERROR: You provided no name, or an unacceptable name. 
  100.  
  101. CAUSE: The program expected a name that begins with an alphabetic character 
  102. (A-Z, a-z), underscore, !, # or @. The name can include alphabetic characters, 
  103. underscore, !, and the digits 0-9 after the first character. For example, 
  104. Fred_3 is an acceptable name. 
  105.  
  106. Possible causes: 
  107.  
  108. o Your instruction is missing a name 
  109. o The name specified was not accepted 
  110.  
  111. ACTION: Correct the name in the instruction and rerun it. 
  112.  
  113.  
  114. ΓòÉΓòÉΓòÉ 7. An expression is required. ΓòÉΓòÉΓòÉ
  115.  
  116. ERROR: Your instruction is missing an expression. 
  117.  
  118. CAUSE: The instruction being processed requires an expression, which consists 
  119. of terms (strings, symbols or function calls) interspersed with operators and 
  120. parentheses. 
  121.  
  122. ACTION: Add the missing expression your instruction and rerun it. 
  123.  
  124.  
  125. ΓòÉΓòÉΓòÉ 8. Right parenthesis expected. ΓòÉΓòÉΓòÉ
  126.  
  127. ERROR: Your expression or function call is missing a right parenthesis. 
  128.  
  129. CAUSE: The program looks for a right parenthesis to match the left parenthesis 
  130. in a nested expression or function call. 
  131.  
  132. ACTION: Correct your expression or function call and rerun it. 
  133.  
  134.  
  135. ΓòÉΓòÉΓòÉ 9. A term is expected for the expression. ΓòÉΓòÉΓòÉ
  136.  
  137. ERROR: You provided an expression without a term 
  138.  
  139. CAUSE: The program found an incomplete expression. An expression consists of 
  140. terms interspersed with operators and parentheses. A term is 
  141.  
  142. o a literal string, such as "This is a string" 
  143.  
  144. o a symbol, such as the name of a variable 
  145.  
  146. o a function call, such as LENGTH("how long is a string?") 
  147. Possible cause: 
  148.  
  149. o You ended an expression with a + or * 
  150.  
  151. ACTION: Add the missing term to your expression and rerun it. 
  152.  
  153.  
  154. ΓòÉΓòÉΓòÉ 10. Keyword found in an expression. ΓòÉΓòÉΓòÉ
  155.  
  156. ERROR: You used a reserved keyword in an expression. 
  157.  
  158. CAUSE: Possible causes are: 
  159.  
  160. o Your expression contains a word reserved by the AVA/2 language. 
  161.  
  162. o A part of your expression is missing 
  163.  
  164. o Your expression is unfinished 
  165.  
  166. ACTION: Correct your expression and rerun it. 
  167.  
  168.  
  169. ΓòÉΓòÉΓòÉ 11. Incorrect pattern in PARSE template. ΓòÉΓòÉΓòÉ
  170.  
  171. ERROR: You specified a pattern for the PARSE instruction template that was not 
  172. accepted. 
  173.  
  174. CAUSE: The template does not follow the PARSE rules. A PARSE template must 
  175. indicate one of the acceptable methods of splitting strings into words or 
  176. variables. 
  177.  
  178. ACTION: Correct your parse template.  Refer to the AVA/2 Language Reference for 
  179. an explanation of parse templates. 
  180.  
  181.  
  182. ΓòÉΓòÉΓòÉ 12. The keyword WITH is expected. ΓòÉΓòÉΓòÉ
  183.  
  184. ERROR: You used a PARSE instruction with a VALUE expression, but it was not 
  185. followed by the WITH keyword. 
  186.  
  187. CAUSE: The program expects WITH to follow the VALUE expression. 
  188.  
  189.    PARSE VALUE expr WITH template
  190.  
  191. ACTION: Add the WITH keyword preceding the parse template and rerun the 
  192. instruction. Refer to the AVA/2 Language Reference for a description of parse 
  193. templates. 
  194.  
  195.  
  196. ΓòÉΓòÉΓòÉ 13. The keyword VAR or VALUE is missing. ΓòÉΓòÉΓòÉ
  197.  
  198. ERROR: You used a PARSE instruction without the keyword VAR or VALUE. 
  199.  
  200. CAUSE: The program expects either the VAR or VALUE keyword following PARSE. For 
  201. example: 
  202.  
  203.    PARSE VAR name template
  204.    PARSE VALUE expr WITH template
  205.  
  206. ACTION: Include the VAR or VALUE keyword in the PARSE instruction. Refer to the 
  207. AVA/2 Language Reference for a description of the PARSE instruction. 
  208.  
  209.  
  210. ΓòÉΓòÉΓòÉ 14. Duplicate TO expression. ΓòÉΓòÉΓòÉ
  211.  
  212. ERROR: You specified a TO expression more than once in the DO statement. 
  213.  
  214. CAUSE: The program only allows one TO expression in a DO instruction. 
  215.  
  216. Possible causes: 
  217.  
  218. o A missing DO instruction 
  219. o Accidental repetition of a TO expression 
  220.  
  221. ACTION: Remove the unneeded TO expression or restructure your DO instruction. 
  222.  
  223.  
  224. ΓòÉΓòÉΓòÉ 15. Duplicate BY expression. ΓòÉΓòÉΓòÉ
  225.  
  226. ERROR: You specified a BY expression more than once in the DO statement. 
  227.  
  228. CAUSE: The program only allows one BY expression in a DO instruction. 
  229.  
  230. Possible causes: 
  231.  
  232. o A missing DO instruction 
  233. o Accidental repetition of a BY expression 
  234.  
  235. ACTION: Remove the unneeded BY expression or restructure your DO instruction. 
  236.  
  237.  
  238. ΓòÉΓòÉΓòÉ 16. Duplicate FOR expression. ΓòÉΓòÉΓòÉ
  239.  
  240. ERROR: You specified a FOR expression more than once in the DO statement. 
  241.  
  242. CAUSE: The program only allows one FOR expression in a DO instruction. 
  243.  
  244. Possible causes: 
  245.  
  246. o A missing DO instruction 
  247. o Accidental repetition of a FOR expression 
  248.  
  249. ACTION: Remove the unneeded FOR expression or restructure your DO instruction. 
  250.  
  251.  
  252. ΓòÉΓòÉΓòÉ 17. Incorrect action value for ON. ΓòÉΓòÉΓòÉ
  253.  
  254. ERROR: You specified an incorrect action in an ON instruction. 
  255.  
  256. CAUSE: The program accepts one of the following actions only: 
  257.  
  258. CALL 
  259.  
  260. EXIT 
  261.  
  262. IGNORE 
  263.  
  264. LEAVE 
  265.  
  266. NOP 
  267.  
  268. QUIT 
  269.  
  270. RETURN 
  271.  
  272. TELL 
  273. The format for the ON instruction is: 
  274.  
  275.     ON event action
  276.  
  277. ACTION: Correct your ON instruction and rerun it. 
  278.  
  279.  
  280. ΓòÉΓòÉΓòÉ 18. Multi-column instruction not at start of line. ΓòÉΓòÉΓòÉ
  281.  
  282. ERROR: You are running a multi-column instruction such as PLAY or SHOW that is 
  283. not on the start of an instruction line. 
  284.  
  285. CAUSE: All multi-column instructions must start at the beginning of the line 
  286. prior to the other columns with values. The following instructions are 
  287. multi-column instructions: 
  288.  
  289. o CLEAR 
  290.  
  291. o COLOR 
  292.  
  293. o PASTE 
  294.  
  295. o PLAY 
  296.  
  297. o SHOW 
  298.  
  299. o TEXTIN 
  300.  
  301. o TEXTOUT 
  302.  
  303. ACTION: Begin your multi-column instruction in the first column (labeled "AVA/2 
  304. Statement"). 
  305.  
  306.  
  307. ΓòÉΓòÉΓòÉ 19. No line or blank line following continuation. ΓòÉΓòÉΓòÉ
  308.  
  309. ERROR: You ended a line with a comma without including a continuation line. The 
  310. continuation line did not exist or was blank. 
  311.  
  312. CAUSE: The program looks for a continuation line when the line ends with a 
  313. comma. 
  314.  
  315. Possible causes are: 
  316.  
  317. o You accidentally ended the instruction with a comma. 
  318.  
  319. o The continuation line is missing or is a comment. 
  320.  
  321.   A line ending with a comma requires an acceptable continuation line. Comments 
  322.   that follow a line ending with a comma are ignored. 
  323.  
  324. o A blank line follows the line that ends with a comma. 
  325.  
  326. ACTION: Remove the comma at the end of the line or provide an acceptable 
  327. continuation line. 
  328.  
  329.  
  330. ΓòÉΓòÉΓòÉ 20. The label is not a name. ΓòÉΓòÉΓòÉ
  331.  
  332. ERROR: You specified an unacceptable value as a label. 
  333.  
  334. CAUSE: Certain characters are not acceptable in a label name. A label consists 
  335. of a name followed by a colon. A name must begin with an alphabetic character 
  336. (A-Z, a-z), underscore, !, # or @. After the first character, the name can also 
  337. contain alphabetic characters, underscore, !, and the digits 0-9. 
  338.  
  339. ACTION: Correct your label and rerun the story. 
  340.  
  341.  
  342. ΓòÉΓòÉΓòÉ 21. Incorrect font or dissolve value. ΓòÉΓòÉΓòÉ
  343.  
  344. ERROR: You specified an unacceptable font size or dissolve type. 
  345.  
  346. CAUSE: The font size and dissolve type must be an integer from 1 to 99. 
  347.  
  348. ACTION: Change the font size or dissolve type to a value from 1 to 99. 
  349.  
  350.  
  351. ΓòÉΓòÉΓòÉ 22. Unacceptable condition specified for an ON instruction. ΓòÉΓòÉΓòÉ
  352.  
  353. ERROR: You specified an unacceptable condition in an ON instruction. 
  354.  
  355. CAUSE: The program did not find one of these conditions in the ON instruction: 
  356.  
  357. An integer keycode value 
  358.  
  359. KEY 
  360.  
  361. A trigger field name 
  362.  
  363. TRIGGER 
  364.  
  365. A timer name (TIMER1 through TIMER10) 
  366.  
  367. TIMER 
  368.  
  369. ACTION: Correct the ON instruction using one of the values above and rerun it. 
  370.  
  371.  
  372. ΓòÉΓòÉΓòÉ 23. End of instruction expected. ΓòÉΓòÉΓòÉ
  373.  
  374. ERROR: Your instruction has no ending. 
  375.  
  376. CAUSE: The program expects an end-of-line or semicolon. 
  377.  
  378. Possible cause: 
  379.  
  380. o Extraneous symbols at the end of the instruction 
  381. o The instruction is missing a semicolon at the end 
  382.  
  383. ACTION: Remove the extra symbols or insert a semicolon to mark the end of the 
  384. instruction. 
  385.  
  386.  
  387. ΓòÉΓòÉΓòÉ 24. Start of instruction expected. ΓòÉΓòÉΓòÉ
  388.  
  389. ERROR: You did not provide an instruction where one was expected. 
  390.  
  391. CAUSE: The program could not find a proper instruction on the indicated line. 
  392.  
  393. Possible causes: 
  394.  
  395. o The instruction line was left blank 
  396. o The instruction is incomplete 
  397.  
  398. ACTION: Correct the indicated instruction line and rerun it. 
  399.  
  400.  
  401. ΓòÉΓòÉΓòÉ 25. Name or end of instruction expected. ΓòÉΓòÉΓòÉ
  402.  
  403. ERROR: Your instruction is missing an acceptable name or is missing an 
  404. end-of-instruction marker. 
  405.  
  406. CAUSE: Possible causes are: 
  407.  
  408. o You typed an unacceptable name in the instruction 
  409.  
  410.   A name must begin with an alphabetic character (A-Z, a-z), underscore, !, # 
  411.   or @. After the first character, the name can also contain alphabetic 
  412.   characters, underscore, !, and the digits 0-9. For example, Fred_3 is an 
  413.   acceptable name. 
  414.  
  415. o There are extra symbols at the end of the instruction 
  416.  
  417. o The instruction is missing the end-of-line indicator or a semicolon 
  418.  
  419. ACTION: Correct the name, remove the extra symbols, or put a semicolon at the 
  420. end of the instruction. 
  421.  
  422.  
  423. ΓòÉΓòÉΓòÉ 26. Operator, term or end of instruction expected. ΓòÉΓòÉΓòÉ
  424.  
  425. ERROR: Your instruction is missing an operator, term for an expression, or an 
  426. end-of-instruction indication. 
  427.  
  428. CAUSE: Possible causes are: 
  429.  
  430. o An instruction is missing an expected operator or term. 
  431.  
  432. o Extra symbols at the end of the instruction 
  433.  
  434. o The instruction is missing the end-of-line indicator or a semicolon 
  435.  
  436. ACTION: Add the operator or term, remove the extra symbols or put a semicolon 
  437. to mark the end of the instruction. 
  438.  
  439.  
  440. ΓòÉΓòÉΓòÉ 27. The keyword THEN is expected. ΓòÉΓòÉΓòÉ
  441.  
  442. ERROR: Your instruction is missing a THEN keyword 
  443.  
  444. CAUSE: The IF instruction and WHEN clause must have a THEN keyword following an 
  445. expression. 
  446.  
  447. The correct format for an IF instruction is: 
  448.  
  449.    IF expression THEN instruction
  450. The correct format for a WHEN clause (within a SELECT instruction) is: 
  451.  
  452.    SELECT
  453.       WHEN expression1 THEN instruction1
  454.       WHEN expression2 THEN instruction2
  455.       OTHERWISE instruction
  456.    END
  457.  
  458. ACTION: Add the keyword THEN at the appropriate place. 
  459.  
  460.  
  461. ΓòÉΓòÉΓòÉ 28. ENABLE, DISABLE, IGNORE expected. ΓòÉΓòÉΓòÉ
  462.  
  463. ERROR: You issued a LINK instruction that is missing a required keyword: 
  464. ENABLE, DISABLE, or IGNORE. 
  465.  
  466. CAUSE: The keyword LINK is not followed by an acceptable keyword: ENABLE, 
  467. DISABLE or IGNORE. 
  468.  
  469. ACTION: Change the keyword after LINK to ENABLE, DISABLE or IGNORE. 
  470.  
  471.  
  472. ΓòÉΓòÉΓòÉ 29. Keyword EXPOSE or end of instruction expected. ΓòÉΓòÉΓòÉ
  473.  
  474. ERROR: Your Procedure is missing the EXPOSE keyword or is not ended properly. 
  475.  
  476. CAUSE: Possible causes: 
  477.  
  478. o The EXPOSE keyword is missing 
  479. o There are extraneous symbols at the end of the instruction 
  480. o The instruction is missing a semicolon at the end 
  481. The PROCEDURE instruction should take one of the following forms: 
  482.  
  483.    PROCEDURE
  484.    PROCEDURE EXPOSE name-list
  485.  
  486. ACTION: Correct your PROCEDURE instruction and rerun it. 
  487.  
  488.  
  489. ΓòÉΓòÉΓòÉ 30. End of image/audio argument field expected. ΓòÉΓòÉΓòÉ
  490.  
  491. ERROR: You entered more than one value in an instruction column. 
  492.  
  493. CAUSE: Each column in a multi-column instruction should contain only one value. 
  494. One of the columns contains more than one values. These are multi-column 
  495. instructions: 
  496.  
  497. o CLEAR 
  498.  
  499. o COLOR 
  500.  
  501. o PASTE 
  502.  
  503. o PLAY 
  504.  
  505. o SHOW 
  506.  
  507. o TEXTIN 
  508.  
  509. o TEXTOUT 
  510.  
  511. ACTION: Correct any column that contains more than one value. 
  512.  
  513.  
  514. ΓòÉΓòÉΓòÉ 31. Number not allowed as function name. ΓòÉΓòÉΓòÉ
  515.  
  516. ERROR: You used a number as part of a function name. 
  517.  
  518. CAUSE: When a symbol is immediately followed by a left parenthesis the program 
  519. assumes that it is a function call. The name of the function being called must 
  520. be an acceptable name or string that does NOT contain a numeric value. 
  521.  
  522. Possible causes are: 
  523.  
  524. o You misspelled the name 
  525.  
  526. o The statement is missing a space or an operator between the numeric value and 
  527.   the left parenthesis 
  528.  
  529. ACTION: Correct the statement and rerun it. 
  530.  
  531.  
  532. ΓòÉΓòÉΓòÉ 32. Number not allowed on left side of an assignment. ΓòÉΓòÉΓòÉ
  533.  
  534. ERROR: You have specified a number to the left of an assignment operator. An 
  535. assignment must have an acceptable name to the left of the assignment (=) 
  536. operator. 
  537.  
  538. CAUSE: An acceptable name must appear on the left side of the an assignment 
  539. operator. A name must begin with an alphabetic character (A-Z, a-z), 
  540. underscore, !, # or @. After the first character, the name can also contain 
  541. alphabetic characters, underscore, !, and the digits 0-9. For example, Fred_3 
  542. is an acceptable name. 
  543.  
  544. ACTION: Correct the symbol to the left of the assignment operator and rerun the 
  545. instruction. 
  546.  
  547.  
  548. ΓòÉΓòÉΓòÉ 33. Unacceptable color number. ΓòÉΓòÉΓòÉ
  549.  
  550. ERROR: You specified an incorrect color number. 
  551.  
  552. CAUSE: The program accepts a color number that is an integer from 0 to 255. 
  553.  
  554. For AVC compatibility, the values Cnn and Ann (where nn is a value from 0 to 
  555. 255) are also accepted as color numbers. 
  556.  
  557. ACTION: Change the color number to a value from 0 to 255. 
  558.  
  559.  
  560. ΓòÉΓòÉΓòÉ 34. Unacceptable numeric value for color. ΓòÉΓòÉΓòÉ
  561.  
  562. ERROR: You specified an incorrect color number. 
  563.  
  564. CAUSE: The program accepts only color numbers that are integers from 0 to 255. 
  565.  
  566. ACTION: Change the color number to a value from 0 to 255. 
  567.  
  568.  
  569. ΓòÉΓòÉΓòÉ 35. Operator or term expected. ΓòÉΓòÉΓòÉ
  570.  
  571. ERROR: You typed an expression that is missing an operator or term. 
  572.  
  573. CAUSE: An operator or term is expected within an expression. 
  574.  
  575. Possible causes are: 
  576.  
  577. o You made a typing error in the expression 
  578.  
  579. o A term is missing (a literal string, number, identified or function call) 
  580.  
  581. o An operator is missing (terms may need to be separated by operators such as + 
  582.   and *) 
  583.  
  584. o A parenthesis is missing 
  585.  
  586. ACTION: Correct your expression so that it consists of the proper terms, 
  587. operators, and parentheses. 
  588.  
  589.  
  590. ΓòÉΓòÉΓòÉ 36. Unknown method used in PLAY instruction. ΓòÉΓòÉΓòÉ
  591.  
  592. ERROR: You used an unrecognized Method for the PLAY instruction. 
  593.  
  594. CAUSE: The Method value for a PLAY instruction must either be blank or one of 
  595. the following: FADE, FADEIN, or FADEOUT. 
  596.  
  597. ACTION: Correct the value in the Method column of the PLAY instruction. 
  598.  
  599.  
  600. ΓòÉΓòÉΓòÉ 37. Only a single WHILE or UNTIL clause allowed. ΓòÉΓòÉΓòÉ
  601.  
  602. ERROR: You specified a DO instruction with more than one WHILE or UNTIL 
  603. clause. 
  604.  
  605. CAUSE: The program accepts only one WHILE or UNTIL keyword in a DO instruction. 
  606.  
  607. ACTION: Remove the unneeded WHILE or UNTIL keyword and restructure your DO 
  608. instruction. 
  609.  
  610.  
  611. ΓòÉΓòÉΓòÉ 38. TO, BY, FOR clause out of context. ΓòÉΓòÉΓòÉ
  612.  
  613. ERROR: You specified a TO, BY or FOR clause in the improper order. 
  614.  
  615. CAUSE: A TO, BY, or FOR clause is out of context in the DO instruction. The 
  616. format for a DO instruction is: 
  617.  
  618.    DO name=expression TO exprt BY exprb FOR exprf
  619. The TO, BY and FOR clauses are optional and may appear in any order. If 
  620. specified, the TO, BY or FOR clause must occur AFTER 'expression' and BEFORE 
  621. any WHILE or UNTIL clause. 
  622.  
  623. ACTION: Reposition the TO, BY and FOR clauses in the DO instruction. 
  624.  
  625.  
  626. ΓòÉΓòÉΓòÉ 39. INPUT specified on multiple wait. ΓòÉΓòÉΓòÉ
  627.  
  628. ERROR: You specified INPUT in addition to other conditions on a single WAIT 
  629. instruction. 
  630.  
  631. CAUSE: The keyword INPUT is not allowed on a WAIT instruction which specifies 
  632. multiple wait conditions. If INPUT is specified, no other conditions must be 
  633. specified. 
  634.  
  635. ACTION: Either remove the INPUT keyword from the WAIT instruction or remove the 
  636. other wait conditions from the instruction. 
  637.  
  638.  
  639. ΓòÉΓòÉΓòÉ 40. Unacceptable integer value for keycode. ΓòÉΓòÉΓòÉ
  640.  
  641. ERROR: You specified an unknown keycode value. 
  642.  
  643. CAUSE: Keycode values can only be an integer from 0 to 65,535. 
  644.  
  645. ACTION: Make the keycode value an integer from 0 to 65,535. 
  646.  
  647.  
  648. ΓòÉΓòÉΓòÉ 41. Unknown style value. ΓòÉΓòÉΓòÉ
  649.  
  650. ERROR: You specified an unknown value for the text style number on a TEXTIN or 
  651. TEXTOUT instruction. 
  652.  
  653. CAUSE: The text style must be a numeric value from 1 to 20. 
  654.  
  655. ACTION: Change the TEXTIN or TEXTOUT instruction to specify a text style number 
  656. between 1 and 20. 
  657.  
  658.  
  659. ΓòÉΓòÉΓòÉ 42. End of field expected. ΓòÉΓòÉΓòÉ
  660.  
  661. ERROR: You entered a multi-column instruction missing an end mark 
  662.  
  663. CAUSE: An end of a column mark (for a multi-column instruction) is missing. 
  664. This can sometimes happen when you delete or insert characters in a 
  665. multi-column instruction, shifting the remaining characters out of their proper 
  666. columns. 
  667.  
  668. ACTION: Retype the instruction, or check that the column values are under the 
  669. appropriate columns and not in the "AVA/2 Statement" field. 
  670.  
  671.  
  672. ΓòÉΓòÉΓòÉ 43. Unable to start program. ΓòÉΓòÉΓòÉ
  673.  
  674. ERROR: You are trying to start a program that needs more resources than is 
  675. available. 
  676.  
  677. CAUSE: There is not enough memory or other system resource for the program to 
  678. start. 
  679.  
  680. Possible causes are: 
  681.  
  682. o You need more memory to run this program. 
  683.  
  684. o Other active applications are using resources needed by this program. 
  685.  
  686. ACTION: Try one of the following: 
  687.  
  688. o Verify that your system meets the minimum requirements for the program. 
  689.  
  690. o Close all applications not being used 
  691.  
  692. o Close any windows that are not needed 
  693.  
  694. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists 
  695.  
  696. o Archive any large or infrequently used files 
  697.  
  698. o Rerun the program 
  699.  
  700.  
  701. ΓòÉΓòÉΓòÉ 44. Too many arguments specified. ΓòÉΓòÉΓòÉ
  702.  
  703. ERROR: You provided too many arguments to TELLPM. 
  704.  
  705. CAUSE: TELLPM accepts the following: 
  706.  
  707. o The name of the story to run. The story name can be preceded with drive and 
  708.   path information. 
  709.  
  710. o Up to 10 arguments can be passed to the specified story. 
  711.  
  712. ACTION: Issue TELLPM again using fewer than 10 arguments 
  713.  
  714.  
  715. ΓòÉΓòÉΓòÉ 45. Unable to load file list dialog box. ΓòÉΓòÉΓòÉ
  716.  
  717. ERROR: There is insufficient memory to start the file list dialog box. The 
  718. program cannot continue. 
  719.  
  720. CAUSE: Possible causes are: 
  721.  
  722. o You need more installed memory 
  723.  
  724. o Other active applications are using some of the resources needed 
  725.  
  726. ACTION: Try the following: 
  727.  
  728. o Verify that your system meets the minimum requirements for the program. 
  729.  
  730. o Close all applications not being used 
  731.  
  732. o Close any windows that are not needed 
  733.  
  734. o Archive any large or infrequently used files 
  735.  
  736. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists 
  737.  
  738. o Rerun the program 
  739.  
  740.  
  741. ΓòÉΓòÉΓòÉ 46. Unable to load story ΓòÉΓòÉΓòÉ
  742.  
  743. ERROR: You are trying to play a story that was not found. 
  744.  
  745. CAUSE: Possible causes are: 
  746.  
  747. o The story file name is misspelled. 
  748.  
  749. o The story file is not in a supported format. 
  750.  
  751. o The story file name is not in a directory that TELLPM searches. 
  752.  
  753.   TELLPM searches for the file in this sequence: 
  754.  
  755.    - The current system directory 
  756.    - The directory where the TELLPM program is located 
  757.    - The directories specified by the UMPATH environment variable 
  758.  
  759. ACTION: Check the spelling of the story name or move the story file to a 
  760. directory that TELLPM searches. 
  761.  
  762.  
  763. ΓòÉΓòÉΓòÉ 47. R00 AVA/2 general error. ΓòÉΓòÉΓòÉ
  764.  
  765. ERROR: The AVA/2 interpreter encountered an error. 
  766.  
  767. CAUSE: An unexpected internal program error occurred. 
  768.  
  769. ACTION: Note the circumstances and related information and report the problem 
  770. to IBM. 
  771.  
  772.  
  773. ΓòÉΓòÉΓòÉ 48. R01 Story stopped by ESC. ΓòÉΓòÉΓòÉ
  774.  
  775. ERROR: You pressed the escape key which stops the story. 
  776.  
  777. CAUSE: The story stops when the escape key (Esc) is pressed. 
  778.  
  779. ACTION: Restart the story when ready. 
  780.  
  781.  
  782. ΓòÉΓòÉΓòÉ 49. R02 BREAKPOINT reached. ΓòÉΓòÉΓòÉ
  783.  
  784. ERROR: Story execution has stopped because the current story line is marked as 
  785. a breakpoint. 
  786.  
  787. CAUSE: When creating or editing this story, you marked this line as a 
  788. breakpoint line. 
  789.  
  790. ACTION: When you no longer want the story to stop at this point, remove the 
  791. breakpoint mark and restart the story. 
  792.  
  793.  
  794. ΓòÉΓòÉΓòÉ 50. R03 Unsaved changes in current story. ΓòÉΓòÉΓòÉ
  795.  
  796. WARNING: You are running a recently edited story. The recent changes have not 
  797. been saved and will be lost when the story finishes. 
  798.  
  799. CAUSE: When a story ends, any changes are lost (if not saved). 
  800.  
  801. ACTION: To save the changes, select 'Save' or 'Save as' from the 'File' menu. 
  802.  
  803.  
  804. ΓòÉΓòÉΓòÉ 51. R04 Too many story control instructions. ΓòÉΓòÉΓòÉ
  805.  
  806. ERROR: You are running a story with too many nested control instructions. 
  807.  
  808. CAUSE: The story can keep track of up to 200 nested control instructions.  A 
  809. control instruction is one of the following: 
  810.  
  811. o a CALL instruction 
  812.  
  813. o a TELL instruction 
  814.  
  815. o a function call 
  816.  
  817. o a DO instruction 
  818.  
  819. o an IF or ELSE instruction 
  820.  
  821. o a SELECT instruction 
  822.  
  823. ACTION: Modify your story to reduce the number of nested control instruction. 
  824. You can: 
  825.  
  826. o Return or exit from a story or routine that was started by a CALL or TELL 
  827.   instruction 
  828.  
  829. o Return from a story or routine started by a function call 
  830.  
  831. o End an IF, ELSE, or SELECT instruction 
  832.  
  833. o Leave or end a DO block 
  834.  
  835.  
  836. ΓòÉΓòÉΓòÉ 52. R99 Internal Error: 4005. ΓòÉΓòÉΓòÉ
  837.  
  838. ERROR: An internal program error was detected. 
  839.  
  840. CAUSE: An unexpected internal program error occurred. 
  841.  
  842. ACTION: Note the circumstances and information and report the error to IBM. 
  843.  
  844.  
  845. ΓòÉΓòÉΓòÉ 53. R06 Intermediate buffer space exceeded. ΓòÉΓòÉΓòÉ
  846.  
  847. ERROR: The intermediate buffer for evaluating variables on the current story 
  848. line is to small. 
  849.  
  850. CAUSE: The buffer can hold up to 1024 bytes of intermediate values of 
  851. expressions being evaluated, parse templates, and evaluated arguments being 
  852. passed to a called function, procedure, or story. 
  853.  
  854. Possible causes are: 
  855.  
  856. o The total length of all the arguments being passed is too large to handle 
  857.   (exceeds 1024 bytes). 
  858.  
  859. o Too many nested stories. 
  860.  
  861.   When a story line calls a function or procedure, the evaluation of that line 
  862.   remains pending while the called procedure runs (leaving less space in the 
  863.   intermediate buffer). 
  864.  
  865. ACTION: Possible actions: 
  866.  
  867. o Simplify the story to reduce the number of pending expressions. 
  868.  
  869. o Use exposed or global variables instead of passing arguments. 
  870.  
  871. o Avoid nesting too many function or procedure calls. 
  872.  
  873.  
  874. ΓòÉΓòÉΓòÉ 54. R07 Not enough memory -- symbol table. ΓòÉΓòÉΓòÉ
  875.  
  876. ERROR: There is not enough memory available to create the internal symbol 
  877. tables. 
  878.  
  879. CAUSE: The program requires additional space for symbols (i.e., variables and 
  880. labels) and some components of the story (audio, pictures, text, and triggers). 
  881. Memory is heavily used by: 
  882.  
  883. o Calls from large stories to other large stories 
  884.  
  885. o Screens with a large number of triggers and text fields all shown at the same 
  886.   time 
  887.  
  888. o Lengthy audio files 
  889.  
  890. o Large numbers of variables with long names and lengthy values 
  891.  
  892. ACTION: Possible actions to take (which also improves the story's performance): 
  893.  
  894. o Restructure your story to reduce its size. 
  895.  
  896. o Close unneeded applications or windows. 
  897.  
  898. o Archive any large or infrequently used files. 
  899.  
  900. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  901.  
  902. o Rerun the program 
  903.  
  904.  
  905. ΓòÉΓòÉΓòÉ 55. R08 Not enough memory -- procedure. ΓòÉΓòÉΓòÉ
  906.  
  907. ERROR: You are trying to run a procedure or function call, but there is not 
  908. enough memory for symbols and story components. 
  909.  
  910. CAUSE: The program requires additional space for symbols (i.e., variables and 
  911. labels) and some components of the story (audio, pictures, text, and triggers). 
  912. Memory is heavily used by: 
  913.  
  914. o Calls from large stories to other large stories 
  915.  
  916. o Screens with a large number of triggers and text fields all shown at the same 
  917.   time 
  918.  
  919. o Lengthy audio files 
  920.  
  921. o Large numbers of variables with long names and lengthy values 
  922.  
  923. ACTION: Possible actions to take (which also improves the story's performance): 
  924.  
  925. o Restructure your story to reduce its size. 
  926.  
  927. o Close unneeded applications or windows. 
  928.  
  929. o Archive any large or infrequently used files. 
  930.  
  931. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  932.  
  933. o Rerun the program 
  934.  
  935.  
  936. ΓòÉΓòÉΓòÉ 56. R09 Too many nested calls. ΓòÉΓòÉΓòÉ
  937.  
  938. ERROR: Your story has exceeded the maximum number of nested calls. You may have 
  939. up to 8 nested calls. 
  940.  
  941. CAUSE: Each time a CALL instruction is used a nest level exists until the 
  942. return from the called routine. Making another CALL from within a called 
  943. routine creates another nest level. 
  944.  
  945. ACTION: Change the structure of the story so that no more than 8 nested calls 
  946. (calls within calls) occur. 
  947.  
  948.  
  949. ΓòÉΓòÉΓòÉ 57. R10 Too many files open. ΓòÉΓòÉΓòÉ
  950.  
  951. ERROR: You trying to open more than 8 files at the same time. 
  952.  
  953. CAUSE: The file you are attempting to use cannot be opened because no more than 
  954. 8 files can be open at one time. When a file is accessed using a READ, WRITE or 
  955. SEEK function, the file is opened and left open. 
  956.  
  957. ACTION: Use the FINISH function to close one or more of your open files. 
  958.  
  959.  
  960. ΓòÉΓòÉΓòÉ 58. R11 Incomplete DO or SELECT block. ΓòÉΓòÉΓòÉ
  961.  
  962. ERROR: You are using a DO or SELECT block that is missing an END instruction. 
  963.  
  964. CAUSE: Each DO or SELECT instruction must have a corresponding END instruction 
  965. to mark the end of the DO or SELECT block. 
  966.  
  967. ACTION: Add an END instruction at the end of the block. 
  968.  
  969.  
  970. ΓòÉΓòÉΓòÉ 59. R12 THEN missing. ΓòÉΓòÉΓòÉ
  971.  
  972. ERROR: Your IF instruction or WHEN clause is missing a THEN keyword. The 
  973. required THEN keyword has been omitted from an IF instruction or a WHEN clause 
  974. of a SELECT instruction. 
  975.  
  976. CAUSE: IF instructions and WHEN clauses require a THEN keyword. The correct 
  977. format for an IF instruction is: 
  978.  
  979.    IF expression THEN instruction
  980. The correct format for a WHEN clause (within a SELECT instruction) is: 
  981.  
  982.    SELECT
  983.       WHEN expression1 THEN instruction1
  984.       WHEN expression2 THEN instruction2
  985.       OTHERWISE instruction
  986.    END
  987.  
  988. ACTION: Include a THEN keyword in the IF instruction or WHEN clause. 
  989.  
  990.  
  991. ΓòÉΓòÉΓòÉ 60. R13 LEAVE or ITERATE outside loop. ΓòÉΓòÉΓòÉ
  992.  
  993. ERROR: Your LEAVE or ITERATE instruction is not within a DO/END block. 
  994.  
  995. CAUSE: A LEAVE or ITERATE instructions must be inside a block of instructions 
  996. that begin with DO and end with END. 
  997.  
  998. ACTION: Correct the logic of your story and rerun it. 
  999.  
  1000.  
  1001. ΓòÉΓòÉΓòÉ 61. R14 FOR variable: not a positive integer. ΓòÉΓòÉΓòÉ
  1002.  
  1003. ERROR: Your expression following the FOR keyword does not result in a positive 
  1004. whole number. 
  1005.  
  1006. CAUSE: The expression does not evaluate to a positive whole number acceptable 
  1007. to AVA/2. The maximum numeric value used in arithmetic operations is 
  1008. +9,999,999.99. 
  1009.  
  1010. ACTION: Correct the expression following the FOR keyword and rerun it. 
  1011.  
  1012.  
  1013. ΓòÉΓòÉΓòÉ 62. R15 DO variable: not a number. ΓòÉΓòÉΓòÉ
  1014.  
  1015. ERROR: Your expression in the DO instruction does not result in an acceptable 
  1016. AVA/2 number. 
  1017.  
  1018. CAUSE: The expression must evaluate to a number acceptable to AVA/2. The range 
  1019. of numeric values used in arithmetic operations is +9,999,999.99 to 
  1020. -9,999,999.99. 
  1021.  
  1022. ACTION: Correct the DO instruction expression and rerun it. 
  1023.  
  1024.  
  1025. ΓòÉΓòÉΓòÉ 63. R16 WHEN or OTHERWISE missing. ΓòÉΓòÉΓòÉ
  1026.  
  1027. ERROR: You are missing a WHEN keyword or OTHERWISE clause in the SELECT block. 
  1028.  
  1029. CAUSE: The SELECT block must have at least one WHEN keyword that evaluates to a 
  1030. 1 or it must have an OTHERWISE clause. The correct format for a SELECT 
  1031. instruction is: 
  1032.  
  1033.    SELECT
  1034.       WHEN expression1 THEN instruction1
  1035.       WHEN expression2 THEN instruction2
  1036.       OTHERWISE instruction3
  1037.    END
  1038.  
  1039. ACTION: Correct the SELECT instruction and rerun it. 
  1040.  
  1041.  
  1042. ΓòÉΓòÉΓòÉ 64. R17 Too many nested DO blocks. ΓòÉΓòÉΓòÉ
  1043.  
  1044. ERROR: Your story has more than 60 nested DO blocks. 
  1045.  
  1046. CAUSE: AVA/2 allows up to 60 nested DO blocks. This includes DO blocks active 
  1047. in other stories. A DO block is active until the END instruction is executed. A 
  1048. DO block remains active when you use the LEAVE, SIGNAL, and TELL instructions 
  1049. to exit. 
  1050.  
  1051. ACTION: Use the SELECT instruction where possible or simplify the story by 
  1052. using fewer nested DO constructs. 
  1053.  
  1054.  
  1055. ΓòÉΓòÉΓòÉ 65. R18 TELL instruction will cause loss of story changes. ΓòÉΓòÉΓòÉ
  1056.  
  1057. ERROR: You have changed but not saved the current story. When the TELL 
  1058. instruction runs you will lose any changes made to the story. 
  1059.  
  1060. CAUSE: When the TELL instruction runs, the current story is discarded from 
  1061. memory. 
  1062.  
  1063. ACTION: If you want the story changes saved, save the current story. 
  1064.  
  1065.  
  1066. ΓòÉΓòÉΓòÉ 66. R19 Variable name too long. ΓòÉΓòÉΓòÉ
  1067.  
  1068. ERROR: Your story is using a variable name that is too long. 
  1069.  
  1070. CAUSE: A variable name can be up to 250 characters long. 
  1071.  
  1072. Possible causes are: 
  1073.  
  1074. o The variable name is longer than 250 characters 
  1075.  
  1076. o The variable name, when evaluated, becomes longer than 250 characters 
  1077.  
  1078. o You misspelled the name 
  1079.  
  1080. ACTION: Correct the problem, or use a shorter variable name. 
  1081.  
  1082.  
  1083. ΓòÉΓòÉΓòÉ 67. R20 Variable value too long. ΓòÉΓòÉΓòÉ
  1084.  
  1085. ERROR: The contents of the variable exceeds 1024 characters. 
  1086.  
  1087. CAUSE: The value assigned to a variable must be no more than 1,024 characters. 
  1088.  
  1089. ACTION: Modify the story so that the variable value does not exceed 1024. 
  1090.  
  1091.  
  1092. ΓòÉΓòÉΓòÉ 68. R21 Variable name expected. ΓòÉΓòÉΓòÉ
  1093.  
  1094. ERROR: You are missing a variable name. 
  1095.  
  1096. CAUSE: The instruction must have a variable name at the proper place. The name 
  1097. was either missing, or in the wrong place. 
  1098.  
  1099. DROP           Used to discard one or more variables. The variable names are 
  1100.                listed after the word DROP. 
  1101.  
  1102. PROCEDURE EXPOSE Used to share one or more specific variables, and only those, 
  1103.                with the caller. The names of the shared variables are listed 
  1104.                after the word EXPOSE. 
  1105.  
  1106. UPPER          Used to convert the contents of one or more variables to upper 
  1107.                case. The variable names are listed after the word UPPER. 
  1108.  
  1109. ACTION: Put a variable name in the proper place and rerun the instruction. 
  1110.  
  1111.  
  1112. ΓòÉΓòÉΓòÉ 69. R22 Comma missing from argument list. ΓòÉΓòÉΓòÉ
  1113.  
  1114. ERROR: You provided an argument list that is missing a comma between arguments. 
  1115.  
  1116. CAUSE: Each argument in a function call, or call to another story, must have a 
  1117. comma separating each argument. An argument list can have up to 10 arguments. 
  1118.  
  1119. ACTION: Put a comma between each argument and rerun the instruction. 
  1120.  
  1121.  
  1122. ΓòÉΓòÉΓòÉ 70. R23 Unmatched parenthesis in argument list. ΓòÉΓòÉΓòÉ
  1123.  
  1124. ERROR: Your expression or function call is missing a left or right parenthesis. 
  1125.  
  1126. CAUSE: For every left parenthesis there must be a right parenthesis. 
  1127.  
  1128. ACTION: Correct and rerun the instruction or function. 
  1129.  
  1130.  
  1131. ΓòÉΓòÉΓòÉ 71. R24 Unacceptable argument or wrong number of arguments ΓòÉΓòÉΓòÉ
  1132.  
  1133. ERROR: You issued a function call or call to another story with an unacceptable 
  1134. argument or the wrong number of arguments. 
  1135.  
  1136. CAUSE: The arguments must be recognizable by AVA/2. A function call or call to 
  1137. another story cannot have more than 10 arguments. 
  1138.  
  1139. If the call was for an AVA/2 function, Check one of these: 
  1140.  
  1141. o A required argument is missing or evaluates to a null string. 
  1142.  
  1143. o There are too many arguments. 
  1144.  
  1145. o An argument's value does not conform to the particular requirements of the 
  1146.   function (such as must be a number, must be positive, or must be within a 
  1147.   specific set of values). 
  1148. If the problem is an AVA/2 function call, refer to the description in the AVA/2 
  1149. Language Reference and correct the instruction as required. 
  1150.  
  1151. ACTION: Correct any arguments in error and issue no more than 10 arguments. 
  1152.  
  1153.  
  1154. ΓòÉΓòÉΓòÉ 72. R25 Unacceptable name or label. ΓòÉΓòÉΓòÉ
  1155.  
  1156. ERROR: You used a name or label that is not acceptable to AVA/2. 
  1157.  
  1158. CAUSE: Any name followed by a colon is a label. 
  1159.  
  1160. A name must begin with an alphabetic character (A-Z, a-z), underscore, !, # or 
  1161. @. After the first character, the name can also contain alphabetic characters, 
  1162. underscore, !, and the digits 0-9. For example, Fred_3 is an acceptable name. 
  1163.  
  1164. Lowercase letters are treated as uppercase. 
  1165.  
  1166. Although the period is not accepted in a name, it can be used to join names to 
  1167. express a compound name. 
  1168.  
  1169. ACTION: Correct the name or label and rerun the story. 
  1170.  
  1171.  
  1172. ΓòÉΓòÉΓòÉ 73. R26 Unable to restore "saved state". ΓòÉΓòÉΓòÉ
  1173.  
  1174. ERROR: AVA/2 was unable to restore a previously saved story state. 
  1175.  
  1176. CAUSE: When trying to restore the saved state, one of the following problems 
  1177. was encountered: 
  1178.  
  1179. o A story state had not been previously saved. 
  1180.  
  1181. o Not enough memory was available to completely restore the saved state. Try 
  1182.   the following: 
  1183.  
  1184.    - Close unneeded applications or windows. 
  1185.  
  1186.    - Archive any large or infrequently used files. 
  1187.  
  1188.    - Delete any unnecessary files on the disk where the SWAPPER.DAT file 
  1189.      exists. 
  1190.  
  1191. ACTION: Try saving the story state again. 
  1192.  
  1193.  
  1194. ΓòÉΓòÉΓòÉ 74. R27 Incorrect syntax. ΓòÉΓòÉΓòÉ
  1195.  
  1196. ERROR: You typed an AVA/2 instruction using unrecognized syntax 
  1197.  
  1198. CAUSE: The instruction was not recognized because it has missing or incorrect 
  1199. information. 
  1200.  
  1201. ACTION: Check the AVA/2 Language Reference for the proper instruction syntax. 
  1202. Correct it and rerun the story. 
  1203.  
  1204.  
  1205. ΓòÉΓòÉΓòÉ 75. R28 Unacceptable expression. ΓòÉΓòÉΓòÉ
  1206.  
  1207. ERROR: Your instruction has one or more expressions that are incorrect. 
  1208.  
  1209. CAUSE: 
  1210.  
  1211. Possible causes are: 
  1212.  
  1213. o An arithmetic expression is not set to a number. 
  1214.  
  1215.   For instance, the following is incorrect if y = 'PLAN6': 
  1216.  
  1217.        x = y + 2
  1218.  
  1219. o The variable was never set to a value. 
  1220.  
  1221.   If the variable y has never set to a value, it will contain its name in 
  1222.   uppercase (y = 'Y'). 
  1223.  
  1224.  
  1225. ACTION: Check the AVA/2 Language Reference for the proper expression syntax. 
  1226. Correct any errors in the expressions on the specified line and rerun it. 
  1227.  
  1228.  
  1229. ΓòÉΓòÉΓòÉ 76. R29 Semicolon expected after expression. ΓòÉΓòÉΓòÉ
  1230.  
  1231. ERROR: A semicolon or end-of-line was expected as the next value, but something 
  1232. else was found. 
  1233.  
  1234. CAUSE: Possible causes are: 
  1235.  
  1236. o There are extra characters that should be deleted 
  1237.  
  1238. o You are missing the open comment delimiter (/*). 
  1239.  
  1240. o Multiple instructions on one line are not separated by a semicolon 
  1241.  
  1242. ACTION: Start all comments with the open delimiter and end all multiple- 
  1243. instruction lines with a semicolon. 
  1244.  
  1245.  
  1246. ΓòÉΓòÉΓòÉ 77. R30 Unexpected keyword. ΓòÉΓòÉΓòÉ
  1247.  
  1248. ERROR: You used a keyword where it was not expected. 
  1249.  
  1250. CAUSE: 
  1251.  
  1252. Possible causes are: 
  1253.  
  1254. o You misspelled a name 
  1255.  
  1256. o A variable has the same name as a keyword 
  1257.  
  1258. o More than one instruction is on the line, but they are not separated by a 
  1259.   semicolon 
  1260.  
  1261. ACTION: Correct the instruction and rerun it. 
  1262.  
  1263.  
  1264. ΓòÉΓòÉΓòÉ 78. R31 Non-numeric value in expression. ΓòÉΓòÉΓòÉ
  1265.  
  1266. ERROR: Your expression does not result in an acceptable AVA/2 number. 
  1267.  
  1268. CAUSE: The expression must evaluate to a number acceptable to AVA/2. The range 
  1269. of numeric values used in arithmetic operations is +9,999,999.99 to 
  1270. -9,999,999.99. 
  1271.  
  1272. Possible causes are: 
  1273.  
  1274. o You misspelled the variable name 
  1275.  
  1276. o An arithmetic expression is not set to a number. 
  1277.  
  1278.   For instance, the following is incorrect if y = 'PLAN6': 
  1279.  
  1280.        x = y + 2
  1281.  
  1282. o The variable was never set to a value. 
  1283.  
  1284.   If the variable y has never set to a value, it will contain its name in 
  1285.   uppercase (y = 'Y'). 
  1286.  
  1287.  
  1288. ACTION: Change the expression or parts of the expression so that it will 
  1289. evaluate to an acceptable numeric value and rerun it. 
  1290.  
  1291.  
  1292. ΓòÉΓòÉΓòÉ 79. R32 Logical value not 0 or 1. ΓòÉΓòÉΓòÉ
  1293.  
  1294. ERROR: The expression in an IF instruction or WHEN clause (of a SELECT 
  1295. instruction) did not evaluation to 0 or 1. 
  1296.  
  1297. CAUSE: An IF instruction and WHEN clause must have an expression whose value is 
  1298. 0 or 1. The evaluation of the expression must be true (1) or false (0). 
  1299.  
  1300. ACTION: Change the expression or parts of the expression so that the evaluated 
  1301. result has a value of 0 or 1. 
  1302.  
  1303.  
  1304. ΓòÉΓòÉΓòÉ 80. R33 Unable to load function. ΓòÉΓòÉΓòÉ
  1305.  
  1306. ERROR: You specified a linkage to an entry point (via the FUNCADD function) in 
  1307. your own dynamic link library (DLL) module, and the linkage could not be 
  1308. established. 
  1309.  
  1310. CAUSE: 
  1311.  
  1312. Possible causes are: 
  1313.  
  1314. o You misspelled the entry point or DLL name 
  1315.  
  1316. o There is no such entry point in the DLL 
  1317.  
  1318. o The DLL was not found 
  1319.  
  1320.   If you included a specific path with the DLL name, only that path is 
  1321.   searched. If you did not specify a path, the system uses the LIBPATH in your 
  1322.   CONFIG.SYS to determine where to look for the DLL. The current directory or 
  1323.   your story directory will not be searched unless explicitly listed in 
  1324.   LIBPATH. 
  1325.  
  1326. o The DLL could not be loaded 
  1327.  
  1328.  
  1329. ACTION: Correct any errors in the following: 
  1330.  
  1331. o The DLL name and path specified in the FUNCADD function 
  1332.  
  1333. o The entry point name specified in the FUNCADD function 
  1334.  
  1335. o The location of the DLL 
  1336.  
  1337. o Your system's LIBPATH 
  1338.  
  1339. o The DLL 
  1340.  
  1341.  
  1342. ΓòÉΓòÉΓòÉ 81. R34 File name too long. ΓòÉΓòÉΓòÉ
  1343.  
  1344. ERROR: You specified a file name that exceeds the AVA/2 limit. 
  1345.  
  1346. CAUSE: The fully-qualified file name can be up to 255 characters, including 
  1347. special characters such as the back slash (\) or colon. If the name is resolved 
  1348. from a variable, the contents of the variable must not be longer than 255 
  1349. characters. 
  1350.  
  1351. ACTION: Correct the name so that it is 255 characters or less. If the file 
  1352. extension matches the AVA/2 defaults (._AU for audio, ._IM for images) you can 
  1353. omit it from the name. 
  1354.  
  1355.  
  1356. ΓòÉΓòÉΓòÉ 82. R35 Too many fields/triggers. ΓòÉΓòÉΓòÉ
  1357.  
  1358. ERROR: You are using more update fields and triggers than AVA/2 allows. 
  1359.  
  1360. CAUSE: The Play window can have up to 256 triggers and update fields. The INPUT 
  1361. instruction lets you specify up to 20 fields. 
  1362.  
  1363. ACTION: Reorganize your story to display fewer fields and triggers at the same 
  1364. time. 
  1365.  
  1366.  
  1367. ΓòÉΓòÉΓòÉ 83. R36 Incorrect PARSE template. ΓòÉΓòÉΓòÉ
  1368.  
  1369. ERROR: You specified a pattern for the PARSE instruction template that was not 
  1370. accepted. 
  1371.  
  1372. CAUSE: The template does not follow the PARSE rules. A PARSE template must 
  1373. indicate one of the acceptable methods of splitting strings into words or 
  1374. variables. 
  1375.  
  1376. ACTION: Correct your parse template.  Refer to the AVA/2 Language Reference for 
  1377. an explanation of parse templates. 
  1378.  
  1379.  
  1380. ΓòÉΓòÉΓòÉ 84. R37 Called story needs to be edited and saved. ΓòÉΓòÉΓòÉ
  1381.  
  1382. ERROR: The format of the story is out-of-date. 
  1383.  
  1384. CAUSE: The called story was created with an old level of the product or with 
  1385. the Audio-Visual Connection (AVC). The story may not run properly. 
  1386.  
  1387. ACTION: Edit and save the story using the Builder/2 product. This produces a 
  1388. up-to-date tokens for the story. 
  1389.  
  1390.  
  1391. ΓòÉΓòÉΓòÉ 85. R38 Divide by zero not possible. ΓòÉΓòÉΓòÉ
  1392.  
  1393. ERROR: Your calculation has an expression which tries to divide by zero. 
  1394. Dividing by zero is not possible. 
  1395.  
  1396. CAUSE: AVA/2 cannot divide by zero. 
  1397.  
  1398. Possible causes are: 
  1399.  
  1400. o The variable name is misspelled 
  1401.  
  1402. o The expression is incorrect 
  1403.  
  1404. o You are using the wrong variable to divide by 
  1405.  
  1406. ACTION: Use logic to check for a value of zero prior to dividing. Check and 
  1407. correct variables used in the expression and rerun it. 
  1408.  
  1409.  
  1410. ΓòÉΓòÉΓòÉ 86. R39 Arithmetic overflow. ΓòÉΓòÉΓòÉ
  1411.  
  1412. ERROR: The result of your calculation exceeds the AVA/2 maximum value. 
  1413.  
  1414. CAUSE: The range of numeric values used in arithmetic operations is 
  1415. +9,999,999.99 to -9,999,999.99. 
  1416.  
  1417. For number in the range +99,999.99 to -99,999.99, precision is zero decimal 
  1418. places. Precision is less for division involving large numbers. 
  1419.  
  1420. ACTION: Correct the expression to prevent values from exceeding the numeric 
  1421. range. 
  1422.  
  1423.  
  1424. ΓòÉΓòÉΓòÉ 87. R40 LABEL defined more than once. ΓòÉΓòÉΓòÉ
  1425.  
  1426. ERROR: You used the same label more than once. 
  1427.  
  1428. CAUSE: AVA/2 allows you to use a label once. Each label within a story must be 
  1429. unique. 
  1430.  
  1431. ACTION: Change the duplicate label to another name. 
  1432.  
  1433.  
  1434. ΓòÉΓòÉΓòÉ 88. R41 LABEL not found. ΓòÉΓòÉΓòÉ
  1435.  
  1436. ERROR: You used a label in a CALL, SIGNAL or TELL instruction that could not be 
  1437. found in your story. 
  1438.  
  1439. CAUSE: 
  1440.  
  1441. Possible causes are: 
  1442.  
  1443. o You misspelled the label name in the CALL, SIGNAL, or TELL. 
  1444.  
  1445. o The label name is misspelled or missing the colon 
  1446.  
  1447. o The label does not exist 
  1448.  
  1449. ACTION: Find the error, correct it and rerun the instruction. 
  1450.  
  1451.  
  1452. ΓòÉΓòÉΓòÉ 89. R42 Incorrect art color specified ΓòÉΓòÉΓòÉ
  1453.  
  1454. ERROR: You specified an art color (in  the color instruction) that does not 
  1455. exist within the image. 
  1456.  
  1457. CAUSE: Art colors are only accepted for AVC images. An art color has the format 
  1458. Ann where nn is a value from 0 to the number of art colors in the image. 
  1459.  
  1460. ACTION: Change the art color in error to an acceptable art color (Ann) or to 
  1461. color number between 0 and 255. 
  1462.  
  1463.  
  1464. ΓòÉΓòÉΓòÉ 90. R43 Program cannot display this image. ΓòÉΓòÉΓòÉ
  1465.  
  1466. ERROR: You are attempting to display an image in an unsupported format. 
  1467.  
  1468. CAUSE: The image is not displayable by AVA/2 Possible causes are: 
  1469.  
  1470. o The image is not one of the following formats: 
  1471.  
  1472.    AVC image 
  1473.  
  1474.    OS/2 1.3, OS/2 2.x, WIN 3.0 bitmap (BMP) 
  1475.  
  1476.    PCX Image 
  1477.  
  1478.    TIF image 
  1479.  
  1480.    Targa image 
  1481.  
  1482. o The image uses an unsupported data compression. 
  1483.  
  1484. o The image contains an unsupported number of colors. AVA/2 supports 8 bit 
  1485.   (pixel) images (256 colors). 
  1486.  
  1487. ACTION: Use an image conversion program to convert the image to a supported 
  1488. format. 
  1489.  
  1490.  
  1491. ΓòÉΓòÉΓòÉ 91. R44 Incorrect ON instruction ΓòÉΓòÉΓòÉ
  1492.  
  1493. ERROR: Your ON instruction has a syntax or name error. 
  1494.  
  1495. CAUSE: The ON instruction syntax is not useable. 
  1496.  
  1497. Possible causes are: 
  1498.  
  1499. o You misspelled the ON condition.  It must include one of the following: 
  1500.  
  1501.    - A reserved keyword; KEY, TRIGGER, or TIMER 
  1502.    - A number representing a specific keycode 
  1503.    - The name of a trigger (conforming to AVA/2 naming rules) 
  1504.  
  1505.      A name must begin with an alphabetic character (A-Z, a-z), underscore, !, 
  1506.      # or @. It can include alphabetic characters, underscore, !, and the 
  1507.      digits 0-9 after the first character. Lowercase letters are treated as 
  1508.      uppercase. 
  1509.    - The name of a timer; TIMER1 through TIMER10 
  1510.  
  1511. ACTION: Correct the ON instruction syntax. Refer to the AVA/2 Language 
  1512. Reference for the proper ON instruction syntax. 
  1513.  
  1514.  
  1515. ΓòÉΓòÉΓòÉ 92. R45 Internal audio error: 4045. ΓòÉΓòÉΓòÉ
  1516.  
  1517. ERROR: You were playing an audio file that resulted in an internal audio error. 
  1518.  
  1519. CAUSE: Unexpected audio status was presented. 
  1520.  
  1521. ACTION: Note of the circumstances and related information and report the error 
  1522. to IBM. 
  1523.  
  1524.  
  1525. ΓòÉΓòÉΓòÉ 93. R46 No such audio label ΓòÉΓòÉΓòÉ
  1526.  
  1527. ERROR: You specified an audio label that cannot be found. 
  1528.  
  1529. CAUSE: Possible causes are: 
  1530.  
  1531. o You misspelled the name of an audio label 
  1532.  
  1533. o You used an unassigned variable for an audio label 
  1534.  
  1535. o The audio label in your AVC audio file has changed 
  1536.  
  1537. ACTION: Verify that the label is correct and does exist, and rerun the 
  1538. instruction. 
  1539.  
  1540.  
  1541. ΓòÉΓòÉΓòÉ 94. R47 Unacceptable audio combination. ΓòÉΓòÉΓòÉ
  1542.  
  1543. ERROR: You are trying to play two audio files at the same time and there is a 
  1544. conflict. 
  1545.  
  1546. CAUSE: Possible causes for this conflict are: 
  1547.  
  1548. o An audio file is recorded in stereo. 
  1549.  
  1550.   Since stereo uses both audio channels, no other audio can be played with it. 
  1551.  
  1552. o An audio file is a MIDI file. 
  1553.  
  1554.   A MIDI file cannot play while another MIDI file is playing. (However, a MIDI 
  1555.   file can play with a voice-quality audio file.) 
  1556.  
  1557. o One file was recorded at a different sample rate from the other. 
  1558.  
  1559. ACTION: To correct this problem: 
  1560.  
  1561. o To play two sounds at once use audio recorded at voice or music quality. 
  1562.  
  1563. o If you are playing MIDI with a voice file, start the MIDI first. 
  1564.  
  1565. o Check the audio file sampling rates and re-record the audio so that each file 
  1566.   is in the same format. 
  1567.  
  1568. o Play the audio files individually; issue a PLAY STOP instruction before 
  1569.   playing the second file. 
  1570.  
  1571.  
  1572. ΓòÉΓòÉΓòÉ 95. R48 Audio start beyond end position. ΓòÉΓòÉΓòÉ
  1573.  
  1574. ERROR: You specified a starting position that is either beyond end position 
  1575. specified or beyond the end of the entire audio segment. 
  1576.  
  1577. CAUSE: 
  1578.  
  1579. Possible causes are: 
  1580.  
  1581. o You misspelled the start position 
  1582.  
  1583. o You specified the wrong start position 
  1584.  
  1585. o Your audio segment may be shorter than expected 
  1586.  
  1587. ACTION: Correct the start position and rerun the instruction. 
  1588.  
  1589.  
  1590. ΓòÉΓòÉΓòÉ 96. R49 FINIS not accepted as audio start. ΓòÉΓòÉΓòÉ
  1591.  
  1592. ERROR: You used the keyword FINIS to define where the audio should start. 
  1593.  
  1594. CAUSE: The keyword FINIS is only used to specify playing to the end of the 
  1595. audio file. 
  1596.  
  1597. ACTION: Correct the syntax to indicate where the audio should start. 
  1598.  
  1599.  
  1600. ΓòÉΓòÉΓòÉ 97. R50 BEGIN not accepted as audio end. ΓòÉΓòÉΓòÉ
  1601.  
  1602. ERROR: You used the keyword BEGIN for where the audio should end. 
  1603.  
  1604. CAUSE: The keyword BEGIN is only used to specify the start of the audio file. 
  1605. You specified BEGIN for where audio should end. 
  1606.  
  1607. ACTION: Correct the syntax to indicate where the audio should end. 
  1608.  
  1609.  
  1610. ΓòÉΓòÉΓòÉ 98. R51 Unresolvable WAIT value. ΓòÉΓòÉΓòÉ
  1611.  
  1612. ERROR: You specified a wait interval does not resolve to a time or an audio 
  1613. sync point. 
  1614.  
  1615. CAUSE: Possible causes are: 
  1616.  
  1617. o You misspelled a keyword 
  1618.  
  1619. o You specified a second wait value in addition to INPUT. 
  1620.  
  1621.   If INPUT is used, it must be the only wait value. 
  1622.  
  1623. o You specified an unacceptable channel with an audio wait value. 
  1624.  
  1625.   A channel identifier (A or B) must be given when waiting for a specific 
  1626.   amount of audio time. The channel identifier is optional when waiting for an 
  1627.   audio label. 
  1628.  
  1629. o You specified an unacceptable timer name. Timer names are: TIMER1, TIMER2, 
  1630.   through TIMER10) 
  1631.  
  1632. ACTION: Specify an acceptable WAIT value. Refer to the AVA/2 Language Reference 
  1633. for possible values. 
  1634.  
  1635.  
  1636. ΓòÉΓòÉΓòÉ 99. R52 Unable to run command or program. ΓòÉΓòÉΓòÉ
  1637.  
  1638. ERROR: There are not enough resources to run the command or program. 
  1639.  
  1640. CAUSE: All of the current resources of the computer are being used. 
  1641.  
  1642. ACTION: 
  1643.  
  1644. o Verify that your system meets the minimum requirements for the program. 
  1645.  
  1646. o Close unneeded applications or windows. 
  1647.  
  1648. o Archive any large or infrequently used files. 
  1649.  
  1650. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  1651.  
  1652. o Rerun the program 
  1653.  
  1654.  
  1655. ΓòÉΓòÉΓòÉ 100. R53 Resource table full. ΓòÉΓòÉΓòÉ
  1656.  
  1657. ERROR: There is no available space in the internal resource table. 
  1658.  
  1659. CAUSE: AVA/2 maintains a table of objects (images, audio files, fonts and 
  1660. dissolves) that are currently loaded. This table keeps track of up to 25 
  1661. objects. When the table is full, no object can be loaded without releasing an 
  1662. object. Use the RELEASE instruction to discard loaded objects. 
  1663.  
  1664. ACTION: Use the RELEASE instruction to free objects to make room in the 
  1665. internal table. You can also use the RESOURCEMAX function to increase the 
  1666. amount of space available in the table. 
  1667.  
  1668.  
  1669. ΓòÉΓòÉΓòÉ 101. R54 Not enough memory -- resource. ΓòÉΓòÉΓòÉ
  1670.  
  1671. ERROR: You are trying to run a story (or use the CLEAR or COLOR instruction) 
  1672. but there is not enough available memory for it. 
  1673.  
  1674. CAUSE: The program requires additional space for symbols (i.e., variables and 
  1675. labels) and some components of the story (audio, pictures, text, and triggers). 
  1676. Memory is heavily used by: 
  1677.  
  1678. o Calls from large stories to other large stories 
  1679.  
  1680. o Screens with a large number of triggers and text fields all shown at the same 
  1681.   time 
  1682.  
  1683. o Lengthy audio files 
  1684.  
  1685. o Large numbers of variables with long names and lengthy values 
  1686.  
  1687. ACTION: Possible actions to take (which also improves the story's performance): 
  1688.  
  1689. o Restructure your story to reduce its size. 
  1690.  
  1691. o Close unneeded applications or windows. 
  1692.  
  1693. o Archive any large or infrequently used files. 
  1694.  
  1695. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  1696.  
  1697. o Rerun the program 
  1698.  
  1699.  
  1700. ΓòÉΓòÉΓòÉ 102. R55  Unacceptable update size argument. ΓòÉΓòÉΓòÉ
  1701.  
  1702. ERROR: You are trying to change the size of an object by using an unacceptable 
  1703. value. 
  1704.  
  1705. CAUSE: The new size must be larger than zero. (The size must be a positive 
  1706. value.) 
  1707.  
  1708. ACTION: Correct the size for the update request. 
  1709.  
  1710.  
  1711. ΓòÉΓòÉΓòÉ 103. R56  Incorrect object type. ΓòÉΓòÉΓòÉ
  1712.  
  1713. ERROR: You provided an incorrect object type for update. 
  1714.  
  1715. CAUSE: The object type provided is in conflict with the requested operation. 
  1716.  
  1717. ACTION: Correct the object type or change the request. 
  1718.  
  1719.  
  1720. ΓòÉΓòÉΓòÉ 104. R57  Resource not in table. ΓòÉΓòÉΓòÉ
  1721.  
  1722. ERROR: You requested a resource that is not available in the internal resource 
  1723. table. 
  1724.  
  1725. CAUSE: The resource may have been released to make room in memory for other 
  1726. resources. 
  1727.  
  1728. ACTION: Load the resource again. 
  1729.  
  1730.  
  1731. ΓòÉΓòÉΓòÉ 105. R58  Resource not loaded. ΓòÉΓòÉΓòÉ
  1732.  
  1733. ERROR: You requested a resource that is not loaded in the internal resource 
  1734. table. 
  1735.  
  1736. CAUSE: The resource may have been released to make room in memory for other 
  1737. resources. 
  1738.  
  1739. ACTION: Load the resource again. 
  1740.  
  1741.  
  1742. ΓòÉΓòÉΓòÉ 106. R59  Resource create error. ΓòÉΓòÉΓòÉ
  1743.  
  1744. ERROR: You requested a resource that AVA/2 was unable to create. 
  1745.  
  1746. CAUSE: Possible causes are: 
  1747.  
  1748. o You misspelled the name of the resource 
  1749.  
  1750. o There is already another file with the same name 
  1751.  
  1752. o There is not enough disk space to create the resource 
  1753.  
  1754. ACTION: Change the name, make more space available, or cancel the operation. 
  1755.  
  1756.  
  1757. ΓòÉΓòÉΓòÉ 107. R60  Incorrect resource priority value. ΓòÉΓòÉΓòÉ
  1758.  
  1759. ERROR: You used an incorrect value for the new resource priority. 
  1760.  
  1761. CAUSE: Priority values must match the values permitted by the programming 
  1762. interface SAPI.H. 
  1763.  
  1764. ACTION: Use a resource priority value permitted by SAPI.H. 
  1765.  
  1766.  
  1767. ΓòÉΓòÉΓòÉ 108. R61 Text or font not found. ΓòÉΓòÉΓòÉ
  1768.  
  1769. ERROR: You either specified TEXT for a picture that has no text or indicated a 
  1770. font size that does not exist. 
  1771.  
  1772. CAUSE: Possible causes are: 
  1773.  
  1774. o You misspelled the file name. 
  1775.  
  1776. o You misspelled the font size 
  1777.  
  1778. o The font resources are not in an available directory 
  1779.  
  1780. o The font resources are missing 
  1781.  
  1782. ACTION: Correct the request, or provide the proper resource. 
  1783.  
  1784.  
  1785. ΓòÉΓòÉΓòÉ 109. R62 Cannot write to "read only" file. ΓòÉΓòÉΓòÉ
  1786.  
  1787. ERROR: You are trying to change the contents of a file that is either on a 
  1788. read-only drive, or is currently set to read-only. 
  1789.  
  1790. CAUSE: AVA/2 is unable to write the file. 
  1791.  
  1792. ACTION: Change the drive or write-enable it, then save the story. 
  1793.  
  1794.  
  1795. ΓòÉΓòÉΓòÉ 110. R63  AVA/2 initialization error. ΓòÉΓòÉΓòÉ
  1796.  
  1797. ERROR: You are trying to start AVA/2, but there is not enough memory or system 
  1798. resources for it to start. 
  1799.  
  1800. CAUSE: Possible causes are: 
  1801.  
  1802. o Your system may not meet minimum requirements 
  1803.  
  1804. o AVA/2 need resources being used by other running applications. 
  1805.  
  1806. ACTION: 
  1807.  
  1808. o Verify that your system meets the minimum requirements for the program. 
  1809.  
  1810. o Close unneeded applications or windows. 
  1811.  
  1812. o Archive any large or infrequently used files. 
  1813.  
  1814. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  1815.  
  1816. o Rerun the program 
  1817.  
  1818.  
  1819. ΓòÉΓòÉΓòÉ 111. R64  Unacceptable beginning line. ΓòÉΓòÉΓòÉ
  1820.  
  1821. ERROR: You specified an unacceptable value for the beginning of the block of 
  1822. lines. 
  1823.  
  1824. CAUSE: The value for the beginning line in a block must be greater than 0. It 
  1825. must also be less than the end-line value and less than the last line in the 
  1826. story. 
  1827.  
  1828. ACTION: Correct the beginning line value. 
  1829.  
  1830.  
  1831. ΓòÉΓòÉΓòÉ 112. R65  Unacceptable ending line. ΓòÉΓòÉΓòÉ
  1832.  
  1833. ERROR: You specified an unacceptable value for the end line of a block of 
  1834. lines. 
  1835.  
  1836. CAUSE: The value for the ending line in a block must be greater than the 
  1837. beginning line value, and equal to or less than the number of lines in the 
  1838. story. 
  1839.  
  1840. ACTION: Correct the ending line value. 
  1841.  
  1842.  
  1843. ΓòÉΓòÉΓòÉ 113. R66  Incorrect open flag. ΓòÉΓòÉΓòÉ
  1844.  
  1845. ERROR: You specified an open flag value that cannot be used. 
  1846.  
  1847. CAUSE: The open flag value associated with an AVA/2 resource is incorrect. 
  1848.  
  1849. ACTION: Use an open flag value documented for the SAPI.H interface. 
  1850.  
  1851.  
  1852. ΓòÉΓòÉΓòÉ 114. R67  Trigger name too long. ΓòÉΓòÉΓòÉ
  1853.  
  1854. ERROR: You specified a trigger name (for an ADDTRIGGER or a DROPTRIGGER 
  1855. function) that exceeds 31 characters. 
  1856.  
  1857. CAUSE: The trigger name exceeds the AVA/2 limit of 31 characters. 
  1858.  
  1859. ACTION: Shorten the trigger name. 
  1860.  
  1861.  
  1862. ΓòÉΓòÉΓòÉ 115. R68  File not found. ΓòÉΓòÉΓòÉ
  1863.  
  1864. ERROR: You specified a story, audio, dissolve, font or image file that could 
  1865. not be found. 
  1866.  
  1867. CAUSE: Some of the possible causes for this message are: 
  1868.  
  1869. o You misspelled the file name. 
  1870.  
  1871. o The file does not exist. 
  1872.  
  1873. o The drive or path specified is incorrect. 
  1874.  
  1875. o The file is not in the AVA/2 search path. 
  1876.  
  1877. o An unsupported function name was specified. 
  1878.  
  1879. AVA/2 searches for the file in this sequence: 
  1880.  
  1881. o The current system directory 
  1882. o The current story directory 
  1883. o The directory where the AVA/2 executable files are located 
  1884. o The directories specified by the UMPATH environment variable 
  1885.  
  1886. ACTION: Correct the file name or path information. 
  1887.  
  1888.  
  1889. ΓòÉΓòÉΓòÉ 116. R69  I/O error on file open. ΓòÉΓòÉΓòÉ
  1890.  
  1891. ERROR: You requested a file that could not be opened. 
  1892.  
  1893. CAUSE: 
  1894.  
  1895. Possible causes are: 
  1896.  
  1897. o You misspelled the file name. 
  1898.  
  1899. o The file does not exist. 
  1900.  
  1901. o The name is already in use as the name of a directory. 
  1902.  
  1903. o The file is in use by someone else. 
  1904.  
  1905. o The file has read-only protection status. 
  1906.  
  1907. o The FILES system limit was reached. 
  1908.  
  1909. o The file's data has been damaged. 
  1910.  
  1911. ACTION: Try the following: 
  1912.  
  1913. o Verify the name of the file. 
  1914.  
  1915.   If it is a new file, make sure the characters in the name are allowed by 
  1916.   OS/2. A name must begin with an alphabetic character (A-Z, a-z), underscore, 
  1917.   !, # or @. After the first character, the name can also contain alphabetic 
  1918.   characters, underscore, !, and the digits 0-9. For example, Fred_3 is an 
  1919.   acceptable name. 
  1920. o Change the file protection status. 
  1921. o Close some currently open files. or increase the value for the number of 
  1922.   files in the FILES= statement in your CONFIG.SYS, shutdown OS/2, and then 
  1923.   restart the system by pressing the Ctrl + Alt + Del keys. 
  1924. o Create a new file on the same drive and try the same operation with the new 
  1925.   file. 
  1926. o Retry the operation after doing one of the above. 
  1927.  
  1928.  
  1929. ΓòÉΓòÉΓòÉ 117. R70  I/O error on file read. ΓòÉΓòÉΓòÉ
  1930.  
  1931. ERROR: You requested a file that cannot be read. 
  1932.  
  1933. CAUSE: The disk or diskette drive may be failing, or the data in the file has 
  1934. been damaged. 
  1935.  
  1936. ACTION: Try another file on the same drive or another file on another drive. 
  1937.  
  1938.  
  1939. ΓòÉΓòÉΓòÉ 118. R71  I/O error on file write. ΓòÉΓòÉΓòÉ
  1940.  
  1941. ERROR: You are trying to save a file that cannot be saved. 
  1942.  
  1943. CAUSE: There may be no space available or there is a problem with the disk or 
  1944. diskette drive you are using. 
  1945.  
  1946. ACTION: Try one of the following: 
  1947.  
  1948. o Try saving the file on another drive. 
  1949.  
  1950. o Return to OS/2 and free some disk space by deleting files and then try to 
  1951.   save the file. 
  1952.  
  1953.  
  1954. ΓòÉΓòÉΓòÉ 119. R72  General I/O error. ΓòÉΓòÉΓòÉ
  1955.  
  1956. ERROR: A general input/output error occurred. 
  1957.  
  1958. CAUSE: Possible causes of this problem are: 
  1959.  
  1960. o There is a problem with the disk or diskette drive. 
  1961.  
  1962. o The file extension in the file name does not match the type specified. 
  1963.  
  1964. o The file contents do not match the type implied by the file's extension. 
  1965.  
  1966. o An internal error has occurred. 
  1967.  
  1968. ACTION: Check each one of the possible conditions noted above. If an internal 
  1969. error has occurred, Note the circumstances and information and report the error 
  1970. to IBM. 
  1971.  
  1972.  
  1973. ΓòÉΓòÉΓòÉ 120. R73  Story already playing. ΓòÉΓòÉΓòÉ
  1974.  
  1975. ERROR: You are trying to play a story while another story is already playing. 
  1976.  
  1977. CAUSE: An application can only play one story at a time. 
  1978.  
  1979. ACTION: Close the first story or wait until the running story completes. 
  1980.  
  1981.  
  1982. ΓòÉΓòÉΓòÉ 121. R74  Story stopped by user. ΓòÉΓòÉΓòÉ
  1983.  
  1984. ERROR: You closed the play window or clicked on the stop button to stop the 
  1985. story. 
  1986.  
  1987. CAUSE: The user stopped the story. 
  1988.  
  1989. ACTION: None required.  Restart the story when ready. 
  1990.  
  1991.  
  1992. ΓòÉΓòÉΓòÉ 122. R75  Unable to load database access routines. ΓòÉΓòÉΓòÉ
  1993.  
  1994. ERROR: Your story could not access the database requested. 
  1995.  
  1996. CAUSE: The AVA/2 database access routines require a specific dynamic link 
  1997. library (DLL) module (called UTSMPLDB) in order to access the database. This 
  1998. module is provided with Ultimedia Workplace/2. The DLL module was not found. 
  1999. Possible causes are: 
  2000.  
  2001. o Workplace/2 is not installed. 
  2002.  
  2003. o The DLL is not in a directory listed in the LIBPATH line of the CONFIG.SYS 
  2004.   file. 
  2005.  
  2006. ACTION: Install Ultimedia Workplace/2 if database access is needed. If already 
  2007. installed verify that the directory containing the DLL module is in the LIBPATH 
  2008. line of your CONFIG.SYS file. 
  2009.  
  2010.  
  2011. ΓòÉΓòÉΓòÉ 123. R76  Database not prepared for operation. ΓòÉΓòÉΓòÉ
  2012.  
  2013. ERROR: You attempted an operation on a database that was not ready for the 
  2014. operation. 
  2015.  
  2016. CAUSE: 
  2017.  
  2018. Possible causes are: 
  2019.  
  2020. o The database file is not open. 
  2021.  
  2022. o The database file is not positioned to a database record. 
  2023.  
  2024. ACTION: Use DBOPEN to open the database file before trying to read or write to 
  2025. the database. 
  2026.  
  2027.  
  2028. ΓòÉΓòÉΓòÉ 124. R77  Too many pipes open. ΓòÉΓòÉΓòÉ
  2029.  
  2030. ERROR: The pipe you are trying to use cannot be opened until another pipe is 
  2031. closed. 
  2032.  
  2033. CAUSE: Only 8 pipes can be open at a time. When a pipe is accessed using a 
  2034. PCREATE, PREAD, or PWRITE function, the pipe is opened and left open. 
  2035.  
  2036. ACTION: Use the PFINISH function to close one or more of the open pipes. 
  2037.  
  2038.  
  2039. ΓòÉΓòÉΓòÉ 125. R78  Too many databases open. ΓòÉΓòÉΓòÉ
  2040.  
  2041. ERROR: The database file you are trying to use cannot be opened until another 
  2042. database is closed. 
  2043.  
  2044. CAUSE: Only 8 database files can be open at a time. When a database file is 
  2045. accessed using a DBCREATE, DBOPEN, DBQUERYSTRING or DBQUERYFILE function, the 
  2046. database file is opened and left open. 
  2047.  
  2048. ACTION: Use the DBFINISH function to close one or more of your open database 
  2049. files. 
  2050.  
  2051.  
  2052. ΓòÉΓòÉΓòÉ 126. R79  Too many IPF files open. ΓòÉΓòÉΓòÉ
  2053.  
  2054. ERROR: The IPF file you are trying to use cannot be opened until another IPF 
  2055. file is closed. 
  2056.  
  2057. CAUSE: Only 6 IPF files can be open at a time. When an IPF file is accessed 
  2058. using an IPFDISPLAY function, the IPF file is opened and left open. 
  2059.  
  2060. ACTION: Use the IPFFINISH function to close one or more of your open IPF files. 
  2061.  
  2062.  
  2063. ΓòÉΓòÉΓòÉ 127. R80  Unable to load pointer file. ΓòÉΓòÉΓòÉ
  2064.  
  2065. ERROR: You specified a custom mouse pointer file (using the POINTER function) 
  2066. that could not be loaded. 
  2067.  
  2068. CAUSE: Possible causes for this problem are: 
  2069.  
  2070. o You misspelled the pointer file name 
  2071.  
  2072. o The file name is missing the file extension. 
  2073.  
  2074. o The pointer file is not in a directory that AVA/2 searches. 
  2075.  
  2076.   AVA/2 searches for the file in the current system directory, current story 
  2077.   directory, Ultimedia executables directory and in the directories specified 
  2078.   by the UMPATH environment variable. 
  2079.  
  2080. o The pointer file is not in a supported format. 
  2081.  
  2082.   It must be in OS/2 2.0 format. 
  2083.  
  2084. ACTION: Check the possible causes described above. 
  2085.  
  2086.  
  2087. ΓòÉΓòÉΓòÉ 128. R81  No style matches the style number. ΓòÉΓòÉΓòÉ
  2088.  
  2089. ERROR: You specified a text style with the TEXTIN or TEXTOUT instruction that 
  2090. was not available to the story. 
  2091.  
  2092. CAUSE: AVA/2 must have the text style specified or have a specification saved 
  2093. with the story. 
  2094.  
  2095. ACTION: You can either edit the story and create a text style with the desired 
  2096. number or change the style number on the TEXTIN or TEXTOUT instruction so that 
  2097. it specifies an available style. 
  2098.  
  2099.  
  2100. ΓòÉΓòÉΓòÉ 129. R82  The argument is beyond the range of values. ΓòÉΓòÉΓòÉ
  2101.  
  2102. ERROR: You specified an unacceptable value to an AVA/2 function. 
  2103.  
  2104. CAUSE: The AVA/2 argument is beyond the range of values allowed by the 
  2105. function. 
  2106.  
  2107. ACTION: Correct the incorrect argument.  Refer to the AVA/2 Language Reference 
  2108. to determine the range of values for the function. 
  2109.  
  2110.  
  2111. ΓòÉΓòÉΓòÉ 130. R83  Unable to determine audio status. ΓòÉΓòÉΓòÉ
  2112.  
  2113. ERROR: AVA/2 could not determine the status of the audio file. 
  2114.  
  2115. CAUSE: Possible causes are: 
  2116.  
  2117. o You misspelled the audio file name. 
  2118.  
  2119. o The audio is not playing. 
  2120.  
  2121. o The audio device does not support this function. 
  2122.  
  2123. o There is a device hardware error 
  2124.  
  2125. ACTION: Stop the story and restart it. If the problem persists, try shutting 
  2126. down OS/2 and restarting your computer. 
  2127.  
  2128.  
  2129. ΓòÉΓòÉΓòÉ 131. R84  Unable to set audio wait position. ΓòÉΓòÉΓòÉ
  2130.  
  2131. ERROR: AVA/2 could not set an audio wait position. 
  2132.  
  2133. CAUSE: To wait for a specific audio label or audio time, AVA/2 sets a cue 
  2134. point. When that cue point is reached in the audio, AVA/2 is notified and ends 
  2135. the wait condition. AVA/2 could not set the audio cue point. Possible causes 
  2136. for this problem are: 
  2137.  
  2138. o You misspelled the audio file name. 
  2139.  
  2140. o The audio file is not currently active. 
  2141.  
  2142. o The specified cue point already exists. 
  2143.  
  2144. o The system limit for cue points has been reached. 
  2145.  
  2146. ACTION: Stop the story and restart it. If the problem persists, try shutting 
  2147. down OS/2 and restarting your computer. 
  2148.  
  2149.  
  2150. ΓòÉΓòÉΓòÉ 132. R85  Unable to adjust audio volume. ΓòÉΓòÉΓòÉ
  2151.  
  2152. ERROR: AVA/2 was unable to adjust the volume for the audio channel. 
  2153.  
  2154. CAUSE: This is caused by an internal audio error. 
  2155.  
  2156. ACTION: Note the circumstances and information and report the error to IBM. 
  2157.  
  2158.  
  2159. ΓòÉΓòÉΓòÉ 133. R86  Unable to adjust audio balance. ΓòÉΓòÉΓòÉ
  2160.  
  2161. ERROR: AVA/2 was unable to adjust the balance for the audio channel. 
  2162.  
  2163. CAUSE: This is caused by an internal audio error. 
  2164.  
  2165. ACTION: Note the circumstances and information and report the error to IBM. 
  2166.  
  2167.  
  2168. ΓòÉΓòÉΓòÉ 134. R87  Unable to stop audio. ΓòÉΓòÉΓòÉ
  2169.  
  2170. ERROR: AVA/2 was unable to stop the playing audio. 
  2171.  
  2172. CAUSE: This is caused by an internal audio error. 
  2173.  
  2174. ACTION: Note the circumstances and information and report the error to IBM. 
  2175.  
  2176.  
  2177. ΓòÉΓòÉΓòÉ 135. R88  Unable to pause or resume audio. ΓòÉΓòÉΓòÉ
  2178.  
  2179. ERROR: AVA/2 was unable to pause or resume playing audio. 
  2180.  
  2181. CAUSE: Possible causes for this problem are: 
  2182.  
  2183. o The audio file is not currently active. 
  2184.  
  2185. o An internal audio error occurred. 
  2186.  
  2187. ACTION: Stop the story and restart it. If the problem persists, note the 
  2188. circumstances and information and report the error to IBM. 
  2189.  
  2190.  
  2191. ΓòÉΓòÉΓòÉ 136. R89  Unable to play audio. ΓòÉΓòÉΓòÉ
  2192.  
  2193. ERROR: AVA/2 was unable to play the audio file. 
  2194.  
  2195. CAUSE: Possible causes for this problem are: 
  2196.  
  2197. o You misspelled the audio file name. 
  2198.  
  2199. o The audio file does not exist. 
  2200.  
  2201. o The audio file is in use on another channel or by another application. 
  2202.  
  2203. o The audio channel is currently playing another audio file. 
  2204.  
  2205. o The story has an unacceptable audio combination. For example: 
  2206.  
  2207.    - Trying to play two stereo audio files. 
  2208.  
  2209.      Since stereo uses both audio channels, no other audio can be played with 
  2210.      it. 
  2211.  
  2212.    - Both audio files are MIDI files. 
  2213.  
  2214.      A MIDI file cannot play while another MIDI file is playing. (However, a 
  2215.      MIDI file can play with a voice-quality audio file.) 
  2216.  
  2217.    - One file was recorded at a different sample rate from the other. 
  2218.  
  2219. o Your audio adapter does not support the type of audio used in this story. 
  2220.  
  2221. o The audio file is an AVC audio file and the required ._AD file is missing. 
  2222.  
  2223.   AVC audio files which have an extension of ._AU require a another file with 
  2224.   the same name and an extension of ._AD. 
  2225.  
  2226. o An internal audio error occurred. 
  2227.  
  2228. ACTION: To correct this problem: 
  2229.  
  2230. o To play two sounds at once use audio recorded at voice or music quality. 
  2231.  
  2232. o If you are playing MIDI with a voice file, start the MIDI first. 
  2233.  
  2234. o Check the audio file sampling rates and re-record the audio so that each file 
  2235.   is in the same format. 
  2236.  
  2237. o Play the audio files individually; issue a PLAY STOP instruction before 
  2238.   playing the second file. 
  2239.  
  2240. o Check that your audio adapter supports the audio type used in the story. 
  2241.  
  2242. o If you are playing an AVC audio file, check that the required files (._AU and 
  2243.   ._AD) are present in the same directory. 
  2244.  
  2245. If it appears that an internal error occurred, note of the circumstances and 
  2246. information and report the error to IBM. 
  2247.  
  2248.  
  2249. ΓòÉΓòÉΓòÉ 137. R90  I/O session dropped. ΓòÉΓòÉΓòÉ
  2250.  
  2251. ERROR: The session reading your file was dropped. 
  2252.  
  2253. CAUSE: Possible causes for this problem are: 
  2254.  
  2255. o A network error occurred that prevented your file from being read. 
  2256.  
  2257. o Multiple disk-intensive operations interfered with each other. This might 
  2258.   occur, for example, if you are playing digital video while displaying an 
  2259.   image. 
  2260.  
  2261. ACTION: Restart the story.  If the problem persists, you need to: 
  2262.  
  2263. o Restructure your story 
  2264.  
  2265. o Move your images or video to the hard disk in your machine. 
  2266.  
  2267.  
  2268. ΓòÉΓòÉΓòÉ 138. Audio not active ΓòÉΓòÉΓòÉ
  2269.  
  2270. ERROR: You entered a request to synchronize with a previously started audio 
  2271. file but no PLAY statement for the specified Channel was found. 
  2272.  
  2273. CAUSE: Possible causes are: 
  2274.  
  2275. o The PLAY statement is missing. 
  2276.  
  2277. o The wrong channel was selected. 
  2278.  
  2279. ACTION: Try one of the following: 
  2280.  
  2281. o Add the missing PLAY statement. 
  2282.  
  2283. o Select the other channel. 
  2284.  
  2285.  
  2286. ΓòÉΓòÉΓòÉ 139. Video not active ΓòÉΓòÉΓòÉ
  2287.  
  2288. ERROR: You entered a request to synchronize with a previously started video 
  2289. file but no prior VPLAY statement was found. 
  2290.  
  2291. CAUSE: Possible causes are: 
  2292.  
  2293. o The VPLAY statement is missing. 
  2294.  
  2295. ACTION: Try the following: 
  2296.  
  2297. o Add the missing VPLAY statement. 
  2298.  
  2299.  
  2300. ΓòÉΓòÉΓòÉ 140. Input file cannot be processed. ΓòÉΓòÉΓòÉ
  2301.  
  2302. ERROR: You attempted to browse a file but the browse failed. (The file name is 
  2303. provided in the error window.) 
  2304.  
  2305. CAUSE: Possible causes are: 
  2306.  
  2307. o You misspelled the file name. 
  2308.  
  2309. o The file does not exist or is empty. 
  2310.  
  2311. o The format of the file is not supported by Browse. 
  2312.  
  2313. o The file is in use by another process. 
  2314.  
  2315. o A system input or output (I/O) error occurred while opening the file. 
  2316.  
  2317. ACTION: Try the following: 
  2318.  
  2319. o Correct the file name. 
  2320.  
  2321. o Make sure the file exists. 
  2322.  
  2323. o Get another copy of the file from another source. 
  2324.  
  2325. o Verify that the browser you started is the proper browser for the format of 
  2326.   the file. 
  2327.  
  2328. o Stop the other process that is using the file. 
  2329.  
  2330. o Try to browse the file again. 
  2331.  
  2332.  
  2333. ΓòÉΓòÉΓòÉ 141. Unresolved DOS error ΓòÉΓòÉΓòÉ
  2334.  
  2335. ERROR: An operating system error has stopped the operation. 
  2336.  
  2337. CAUSE: An operating system error cannot be resolved. 
  2338.  
  2339. ACTION: Try one of the following: 
  2340.  
  2341. o Retype the filename, making sure the drive, path, file name and extension are 
  2342.   correct. 
  2343.  
  2344. o Note the circumstances and information and report this error to IBM. 
  2345.  
  2346.  
  2347. ΓòÉΓòÉΓòÉ 142. Directory not found ΓòÉΓòÉΓòÉ
  2348.  
  2349. ERROR: You specified a directory that cannot be found. 
  2350.  
  2351. CAUSE: Possible causes are: 
  2352.  
  2353. o You misspelled the directory name. 
  2354.  
  2355. o The directory that you want does not exist. 
  2356.  
  2357. ACTION: Try the following: 
  2358.  
  2359. o Retype the filename, correcting the drive and path. 
  2360.  
  2361. o Create the directory and put any required resources in it. 
  2362.  
  2363.  
  2364. ΓòÉΓòÉΓòÉ 143. Not a DOS disk ΓòÉΓòÉΓòÉ
  2365.  
  2366. ERROR: You specified a disk that is not readable. 
  2367.  
  2368. CAUSE: Possible causes are: 
  2369.  
  2370. o The disk has not been formatted properly. 
  2371.  
  2372. o The disk has not been formatted for a DOS or OS/2 system. 
  2373.  
  2374. ACTION: Try one of the following: 
  2375.  
  2376. o Check the disk in the drive. 
  2377.  
  2378. o Format the disk. 
  2379.  
  2380. o Run diagnostics or try another disk. 
  2381.  
  2382.  
  2383. ΓòÉΓòÉΓòÉ 144. Drive locked ΓòÉΓòÉΓòÉ
  2384.  
  2385. ERROR: You are trying to use a drive that is reserved by another process. 
  2386.  
  2387. CAUSE: Possible causes are: 
  2388.  
  2389. o Another process is using the drive and can not be interrupted. 
  2390.  
  2391. o There is a hardware or program problem. 
  2392.  
  2393. ACTION: Try one of the following: 
  2394.  
  2395. o Stop the other process. 
  2396.  
  2397. o Wait until the drive is free. 
  2398.  
  2399. o Shutdown OS/2 and then restart the system. 
  2400.  
  2401. o Note the circumstances and information and report this error to IBM. 
  2402.  
  2403.  
  2404. ΓòÉΓòÉΓòÉ 145. File name too long ΓòÉΓòÉΓòÉ
  2405.  
  2406. ERROR: You specified either a file name or an extension that is too long. 
  2407.  
  2408. CAUSE: Possible causes are: 
  2409.  
  2410. o The file name is greater than 8 characters. 
  2411.  
  2412. o The extension is greater than 3 characters. 
  2413.  
  2414. o The fully qualified file name is more than 27 characters which is the maximum 
  2415.   length that will fit in the story table. 
  2416.  
  2417. ACTION: Try one of the following: 
  2418.  
  2419. o Correct the file name or extension. 
  2420.  
  2421. o Rename or relocate the file so that the fully qualified name is 27 characters 
  2422.   or less. 
  2423.  
  2424. o Use the UMPATH environment variable to specify the drive and path information 
  2425.   making it unnecessary to qualify the file name in the story. 
  2426.  
  2427.  
  2428. ΓòÉΓòÉΓòÉ 146. Unable to open profile data ΓòÉΓòÉΓòÉ
  2429.  
  2430. ERROR: The profile data file SE.PRO could not be opened. 
  2431.  
  2432. CAUSE: Possible causes are: 
  2433.  
  2434. o The file does not exist. 
  2435.  
  2436. o You don't have permission to read the file. 
  2437.  
  2438. ACTION: Try one of the following: 
  2439.  
  2440. o Look for the file SE.PRO. It should be in the same directory where Builder/2 
  2441.   is installed. 
  2442.  
  2443. o Check the access permissions on the file, directory, or drive. 
  2444.  
  2445.   Method varies by file system type (for example, FAT, HPFS, or LAN drive). 
  2446.   Contact your administrator. 
  2447.  
  2448.  
  2449. ΓòÉΓòÉΓòÉ 147. Unable to save data to .INI file ΓòÉΓòÉΓòÉ
  2450.  
  2451. ERROR: Unable to save data to .INI file ULTITOOL.INI in the current working 
  2452. directory or in a directory specified in the UMPATH system variable. 
  2453.  
  2454. CAUSE: Possible causes are: 
  2455.  
  2456. o You don't have permission to write to the disk or the file in the current 
  2457.   working directory or in a directory specified in your UMPATH. 
  2458.  
  2459. o Insufficient storage space is available. 
  2460.  
  2461. ACTION: Try one of the following: 
  2462.  
  2463. o Check the access permissions on the file, directory, or drive. 
  2464.  
  2465.   Method varies by file system type (for example, FAT, HPFS, or LAN drive). 
  2466.   Contact your administrator. 
  2467.  
  2468. o Make sure there is sufficient storage space: 
  2469.  
  2470.    - Verify that your system meets the minimum requirements for Builder/2. 
  2471.  
  2472.    - Archive any large or infrequently used files on the drive where the 
  2473.      ULTITOOL.INI file is being saved. 
  2474.  
  2475.    - Rerun the program 
  2476.  
  2477.  
  2478. ΓòÉΓòÉΓòÉ 148. Unable to save story ΓòÉΓòÉΓòÉ
  2479.  
  2480. ERROR: Unable to save the story.  Save cancelled. 
  2481.  
  2482. CAUSE: Possible causes are: 
  2483.  
  2484. o You don't have permission to write the file. 
  2485.  
  2486. o The diskette is write protected. 
  2487.  
  2488. o Insufficient storage space is available. 
  2489.  
  2490. o The file specified is a directory. 
  2491.  
  2492. o A component of the path prefix is not a directory. 
  2493.  
  2494. ACTION: Try one of the following: 
  2495.  
  2496. o Check the spelling of all path names. 
  2497.  
  2498. o Check the access permissions on the file, directory, or drive. 
  2499.  
  2500.   Method varies by file system type (for example, FAT, HPFS, or LAN drive). 
  2501.   Contact your administrator. 
  2502.  
  2503. o If saving to a diskette, check the position of the write protect tab. 
  2504.  
  2505. o Make sure there is sufficient storage space: 
  2506.  
  2507.    - Verify that your system meets the minimum requirements for Builder/2. 
  2508.  
  2509.    - Archive any large or infrequently used files on the drive where the story 
  2510.      is being saved (the directory is provided in the error window). 
  2511.  
  2512.    - Rerun the program 
  2513.  
  2514. o Retype the file name (using Save As...). 
  2515.  
  2516. o Export the file (using Export...). 
  2517.  
  2518.  
  2519. ΓòÉΓòÉΓòÉ 149. Incorrect file extension ΓòÉΓòÉΓòÉ
  2520.  
  2521. ERROR: The story has an unrecognized file extension. 
  2522.  
  2523. CAUSE: Possible causes are: 
  2524.  
  2525. o You misspelled the story name. 
  2526.  
  2527. o The story does not have a ._ST extension. 
  2528.  
  2529. ACTION: Try the following: 
  2530.  
  2531. o Respecify the name and file extension. 
  2532.  
  2533. o Rename the file extension to ._ST 
  2534.  
  2535.  
  2536. ΓòÉΓòÉΓòÉ 150. No story selected ΓòÉΓòÉΓòÉ
  2537.  
  2538. ERROR: You have not selected a story file. 
  2539.  
  2540. CAUSE: Possible causes are: 
  2541.  
  2542. o You clicked on one of the Authoring buttons before opening a story. 
  2543.  
  2544. ACTION: Try the following: 
  2545.  
  2546. o Open a new or existing story by selecting File from the menu, then select 
  2547.   Open... 
  2548.  
  2549.   For a new story, type the name of the story in the Open filename field. For 
  2550.   an existing story, type the fully-qualified name of the story or select it 
  2551.   from the Open window file list. 
  2552.  
  2553.  
  2554. ΓòÉΓòÉΓòÉ 151. File already exists ΓòÉΓòÉΓòÉ
  2555.  
  2556. ERROR: You are trying to use Save as... to save a new file, but a file by that 
  2557. name already exists. 
  2558.  
  2559. CAUSE: Possible causes are: 
  2560.  
  2561. o You misspelled the file name in the Save as... window. 
  2562.  
  2563. o You didn't know a file by that name existed. 
  2564.  
  2565. ACTION: Try the following: 
  2566.  
  2567. o Change the story file name of the existing file, or the one that you are 
  2568.   trying to save. 
  2569.  
  2570.  
  2571. ΓòÉΓòÉΓòÉ 152. Out of memory ΓòÉΓòÉΓòÉ
  2572.  
  2573. ERROR: You are trying to do something that requires more memory than the system 
  2574. can provide. 
  2575.  
  2576. CAUSE: Possible causes are: 
  2577.  
  2578. o There is not enough space left on the drive that contains the SWAPPER.DAT 
  2579.   file. 
  2580.  
  2581. ACTION: Try one of the following: 
  2582.  
  2583. o Verify that your system meets the minimum requirements for Builder/2. 
  2584.  
  2585. o Close unneeded applications or windows. 
  2586.  
  2587. o Archive any large or infrequently used files. 
  2588.  
  2589. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  2590.  
  2591. o Move the SWAPPER.DAT file to a drive that has more space. 
  2592.  
  2593.   If you move the SWAPPER.DAT file to another drive, you must also change the 
  2594.   SWAPPATH variable in CONFIG.SYS file. Then shutdown OS/2 and restart the 
  2595.   system. 
  2596.  
  2597. o Add more memory if possible. 
  2598.  
  2599. o Rerun the program 
  2600.  
  2601.  
  2602. ΓòÉΓòÉΓòÉ 153. Error starting internal application ΓòÉΓòÉΓòÉ
  2603.  
  2604. ERROR: Builder/2 requested an internal application that could not be started. 
  2605.  
  2606. CAUSE: Internal application unavailable. 
  2607.  
  2608. ACTION: Note the circumstances and information and report this error to IBM. 
  2609.  
  2610.  
  2611. ΓòÉΓòÉΓòÉ 154. Sync with video not valid based on video type ΓòÉΓòÉΓòÉ
  2612.  
  2613. ERROR: You entered a request to synchronize with video which is invalid for the 
  2614. type of video being played. 
  2615.  
  2616. CAUSE: Possible causes are: 
  2617.  
  2618. o You are trying to Sync with video with a CD-XA video file. 
  2619.  
  2620. o You are trying to Sync with video with a laserdisc video file. 
  2621.  
  2622. ACTION: Try one of the following: 
  2623.  
  2624. o For CD-XA, specify a time value to wait instead. 
  2625.  
  2626. o For laserdisc, specify a frame to wait for instead using the following 
  2627.   syntax:  F 123. 
  2628.  
  2629.  
  2630. ΓòÉΓòÉΓòÉ 155. Fully qualified file name is too long...name truncated ΓòÉΓòÉΓòÉ
  2631.  
  2632. ERROR: You are trying to drop either an image file, an audio file, or a video 
  2633. file into a Builder/2 story but the fully qualified file name is too long.  The 
  2634. file name has been cut to fit in the story table. 
  2635.  
  2636. CAUSE: Possible causes are: 
  2637.  
  2638. o The fully qualified name of the object you are trying to drop into the 
  2639.   Builder/2 story exceeds 27 characters. 
  2640.  
  2641. ACTION: Try one of the following: 
  2642.  
  2643. o Rename or relocate the object so that its fully qualified name is 27 
  2644.   characters or less.  Then try to drag the object onto Builder/2 again. 
  2645.  
  2646.  
  2647. ΓòÉΓòÉΓòÉ 156. No label name specified ΓòÉΓòÉΓòÉ
  2648.  
  2649. ERROR: You did not enter a label name in the Label Definition window. 
  2650.  
  2651. CAUSE: Possible causes are: 
  2652.  
  2653. o You left the Label Name field blank 
  2654.  
  2655. o You entered only blanks in the Label Name field 
  2656.  
  2657. ACTION: Try one of the following: 
  2658.  
  2659. o Enter an acceptable label name 
  2660.  
  2661. o Close the window by clicking on the Cancel button 
  2662.  
  2663.  
  2664. ΓòÉΓòÉΓòÉ 157. Unacceptable label name ΓòÉΓòÉΓòÉ
  2665.  
  2666. ERROR: You entered a label name that began with a digit. 
  2667.  
  2668. CAUSE: A label cannot begin with a number. A label must begin with an 
  2669. alphabetic character (A-Z, a-z), underscore, !, # or @. After the first 
  2670. character, the label can also contain alphabetic characters, underscore, !, and 
  2671. the digits 0-9. For example, PART_3 is an acceptable label. 
  2672.  
  2673. ACTION: Try one of the following: 
  2674.  
  2675. o Enter an acceptable label name 
  2676.  
  2677. o Cancel the window by clicking on the Cancel button 
  2678.  
  2679.  
  2680. ΓòÉΓòÉΓòÉ 158. No key specified ΓòÉΓòÉΓòÉ
  2681.  
  2682. ERROR:  You did not enter or select a key name from the key drop down list. 
  2683.  
  2684. CAUSE: Possible causes are: 
  2685.  
  2686. o The key name was accidentally left blank when scope was set to "branch only" 
  2687.  
  2688. ACTION: Try one of the following: 
  2689.  
  2690. o Enter or select a key name 
  2691.  
  2692. o Cancel the window by clicking on the Cancel button 
  2693.  
  2694.  
  2695. ΓòÉΓòÉΓòÉ 159. No trigger name specified ΓòÉΓòÉΓòÉ
  2696.  
  2697. ERROR: You did not enter a trigger name in the trigger entry field. 
  2698.  
  2699. CAUSE: Possible cause: 
  2700.  
  2701. o The trigger name was accidentally left blank when scope was set to "Branch 
  2702.   Only" 
  2703.  
  2704. ACTION: Try one of the following: 
  2705.  
  2706. o Enter a trigger name 
  2707.  
  2708. o Cancel the window by clicking on the Cancel button 
  2709.  
  2710.  
  2711. ΓòÉΓòÉΓòÉ 160. No trigger name specified ΓòÉΓòÉΓòÉ
  2712.  
  2713. ERROR: You did not enter a trigger name in the trigger entry field. 
  2714.  
  2715. CAUSE: Possible cause: 
  2716.  
  2717.  
  2718. o The trigger name was not included when creating an addtrigger or droptrigger 
  2719.   statement. 
  2720.  
  2721. ACTION: Try one of the following: 
  2722.  
  2723. o Enter a trigger name 
  2724.  
  2725. o Cancel the window by clicking on the Cancel button 
  2726.  
  2727.  
  2728. ΓòÉΓòÉΓòÉ 161. Unacceptable key value ΓòÉΓòÉΓòÉ
  2729.  
  2730. ERROR: The value entered in the Key input field is unacceptable. 
  2731.  
  2732. CAUSE: Possible causes are: 
  2733.  
  2734. o With Scope set for the Entire Story, you entered a non-numeric value that is 
  2735.   not recognized as a valid key. 
  2736.  
  2737. o You entered a negative number.  Numeric key values must be positive. 
  2738.  
  2739. ACTION: Try one of the following: 
  2740.  
  2741. o Select a value from the Key drop-down list. 
  2742.  
  2743. o Enter a valid numeric value in the Key input field. 
  2744.  
  2745. o Close the window by clicking on the Cancel button. 
  2746.  
  2747.  
  2748. ΓòÉΓòÉΓòÉ 162. Unacceptable color value ΓòÉΓòÉΓòÉ
  2749.  
  2750. ERROR: You entered an unrecognized Clear to color value. 
  2751.  
  2752. CAUSE: Possible causes are: 
  2753.  
  2754. o You entered a non-numeric value that is not an acceptable color mnemonic 
  2755.  
  2756. o You entered a numeric value that is not within the range of the current color 
  2757.   palette 
  2758.  
  2759. ACTION: Try one of the following: 
  2760.  
  2761. o Enter one of the valid color mnemonics 
  2762.  
  2763. o Use the color picker icon to choose a numeric value 
  2764.  
  2765. o Cancel the window by clicking on the Cancel button 
  2766.  
  2767.  
  2768. ΓòÉΓòÉΓòÉ 163. Colors exceed the space available ΓòÉΓòÉΓòÉ
  2769.  
  2770. ERROR: You have exceeded the space available for specifying colors. 
  2771.  
  2772. CAUSE: The column in the Text View for specifying colors is a limited space. 
  2773.  
  2774. Check the following: 
  2775.  
  2776. o The number of colors you are using. 
  2777.  
  2778. o The size of the numbers that specify the colors you are using. 
  2779.  
  2780. ACTION: Try one of the following: 
  2781.  
  2782. o Split the color definition into two or more separate color frames. 
  2783.  
  2784. o Reduce the number of colors you are using. 
  2785.  
  2786. o Close the window by clicking on the Cancel button 
  2787.  
  2788.  
  2789. ΓòÉΓòÉΓòÉ 164. Missing old or new color ΓòÉΓòÉΓòÉ
  2790.  
  2791. ERROR: You specified a new or an old color without the corresponding value (the 
  2792. other old or new color). 
  2793.  
  2794. CAUSE: The old and new color must be specified as a pair. 
  2795.  
  2796. Check to see that you have specified each color with both an old and a new 
  2797. value. 
  2798.  
  2799. ACTION: Try one of the following: 
  2800.  
  2801. o Enter the missing old or new color value 
  2802.  
  2803. o Close the window by clicking on the Cancel button 
  2804.  
  2805.  
  2806. ΓòÉΓòÉΓòÉ 165. No system color map is available ΓòÉΓòÉΓòÉ
  2807.  
  2808. ERROR: It is not possible to access the system color map. 
  2809.  
  2810. CAUSE: Possible causes are: 
  2811.  
  2812. o The image you selected has no color map, and the system color map could not 
  2813.   be accessed. 
  2814.  
  2815.   When an image you select has no color map, Builder/2 uses the system color 
  2816.   map. The system color map could not be accessed. 
  2817.  
  2818. o No image was specified and the system color map could not be accessed. 
  2819.  
  2820. ACTION: Try one of the following: 
  2821.  
  2822. o Try selecting another image file with the File List button. 
  2823.  
  2824. o Close the window by clicking on the Cancel button. 
  2825.  
  2826. o Note the circumstances and information and report this error to IBM. 
  2827.  
  2828.  
  2829. ΓòÉΓòÉΓòÉ 166. No color map ΓòÉΓòÉΓòÉ
  2830.  
  2831. ERROR: The file selected does not have a valid color map. The default system 
  2832. color map will be used. 
  2833.  
  2834. CAUSE: Possible causes are: 
  2835.  
  2836. o You entered the name of a file that is not an image file. 
  2837.  
  2838. o You entered the name of an image file that does not have an associated color 
  2839.   map. 
  2840.  
  2841. ACTION: Try one of the following: 
  2842.  
  2843. o Using the File List button, select a valid image file. 
  2844.  
  2845. o Continue selecting colors using the system color map. 
  2846.  
  2847. o Close the window by clicking on the Cancel button. 
  2848.  
  2849.  
  2850. ΓòÉΓòÉΓòÉ 167. Unable to open file for export ΓòÉΓòÉΓòÉ
  2851.  
  2852. ERROR: The file you want to export could not be opened. 
  2853.  
  2854. CAUSE: Possible causes are: 
  2855.  
  2856. o The file specified is a directory. 
  2857.  
  2858. o A component of the path prefix is not a directory. 
  2859.  
  2860. o You don't have permission to write the file. 
  2861.  
  2862. o Insufficient storage space is available. 
  2863.  
  2864. ACTION: Try one of the following: 
  2865.  
  2866. o Correct the file name. 
  2867.  
  2868. o Check the access permissions on the file, directory, or drive. 
  2869.  
  2870.   Method varies by file system type (for example, FAT, HPFS, or LAN drive). 
  2871.   Contact your administrator. 
  2872.  
  2873. o Make sure there is sufficient storage space: 
  2874.  
  2875.    - Verify that your system meets the minimum requirements for the Builder/2. 
  2876.  
  2877.    - Archive any large or infrequently used files on the drive where the story 
  2878.      is being exported (the directory is provided in the error window). 
  2879.  
  2880.    - Rerun the program 
  2881.  
  2882.  
  2883. ΓòÉΓòÉΓòÉ 168. Unable to open import file ΓòÉΓòÉΓòÉ
  2884.  
  2885. ERROR: The file you want to import could not be opened. 
  2886.  
  2887. CAUSE: Possible causes are: 
  2888.  
  2889. o The file specified does not exist. 
  2890.  
  2891. o The file specified is a directory. 
  2892.  
  2893. o A component of the path prefix is not a directory. 
  2894.  
  2895. o You don't have permission to read the file. 
  2896.  
  2897. ACTION: Try one of the following: 
  2898.  
  2899. o Correct the file name and path. 
  2900.  
  2901. o Check the access permissions on the file, directory, or drive. 
  2902.  
  2903.   Method varies by file system type (for example, FAT, HPFS, or LAN drive). 
  2904.   Contact your administrator. 
  2905.  
  2906.  
  2907. ΓòÉΓòÉΓòÉ 169. Out of memory ΓòÉΓòÉΓòÉ
  2908.  
  2909. ERROR: You are trying to import a file, but there is not enough memory. 
  2910.  
  2911. CAUSE: There is not enough space left on the drive that contains the 
  2912. SWAPPER.DAT file. 
  2913.  
  2914. ACTION: Try one of the following: 
  2915.  
  2916. o Verify that your system meets the minimum requirements for the Builder/2. 
  2917.  
  2918. o Close unneeded applications or windows. 
  2919.  
  2920. o Archive any large or infrequently used files. 
  2921.  
  2922. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  2923.  
  2924. o Move the SWAPPER.DAT file to a drive that has more space. 
  2925.  
  2926.   If the SWAPPER.DAT file is moved to another drive, the SWAPPATH variable in 
  2927.   the CONFIG.SYS file must be updated and then you must shutdown OS/2 and 
  2928.   restart the computer. 
  2929.  
  2930. o Add more memory if possible. 
  2931.  
  2932. o Rerun the program 
  2933.  
  2934.  
  2935. ΓòÉΓòÉΓòÉ 170. Unacceptable import file ΓòÉΓòÉΓòÉ
  2936.  
  2937. ERROR: You are trying to import a file that is not in the correct import file 
  2938. format. 
  2939.  
  2940. CAUSE: Possible causes are: 
  2941.  
  2942. o The file does not have a recognizeable header in the file. The file was 
  2943.   either modified after being exported, or was created incorrectly. The first 
  2944.   column of the first line must start with: /*AVC*/ 
  2945.  
  2946. ACTION: Try one of the following: 
  2947.  
  2948. o Verify the file name. 
  2949.  
  2950. o Edit the file and make sure that the first column of the first line starts 
  2951.   with: /*AVC*/ 
  2952.  
  2953. o If possible export the story and try to import it again. 
  2954.  
  2955.  
  2956. ΓòÉΓòÉΓòÉ 171. Empty import file ΓòÉΓòÉΓòÉ
  2957.  
  2958. WARNING: The file you imported is empty. 
  2959.  
  2960. CAUSE: There are no lines in the import file. 
  2961.  
  2962. ACTION: Try one of the following: 
  2963.  
  2964. o Add story lines to the import file. 
  2965.  
  2966. o If possible, export the story and try to import again. 
  2967.  
  2968.  
  2969. ΓòÉΓòÉΓòÉ 172. Invalid substory ΓòÉΓòÉΓòÉ
  2970.  
  2971. ERROR: While playing the current story a statement was processed that causes a 
  2972. substory to be played.  The substory contains one or more errors, making it 
  2973. invalid. 
  2974.  
  2975. CAUSE: An error was detected on a line in a substory. 
  2976.  
  2977. ACTION: Try one of the following: 
  2978.  
  2979. o Open the substory that is named in the error message and correct the error on 
  2980.   the line referenced in the error message.  Then, run the story again. 
  2981.  
  2982.  
  2983. ΓòÉΓòÉΓòÉ 173. Unacceptable syntax ΓòÉΓòÉΓòÉ
  2984.  
  2985. ERROR: There is unrecognized syntax in the import file. 
  2986.  
  2987. CAUSE: Possible causes are: 
  2988.  
  2989. o The file was either modified after being exported or the file was created new 
  2990.   with improper syntax. 
  2991.  
  2992. ACTION: Try one of the following: 
  2993.  
  2994. o Edit the import file and correct the problem. 
  2995.  
  2996. o If possible export the story and try to import it again. 
  2997.  
  2998.  
  2999. ΓòÉΓòÉΓòÉ 174. Import successful. ΓòÉΓòÉΓòÉ
  3000.  
  3001. INFORMATION: The imported story is now in the copy buffer. 
  3002.  
  3003. CAUSE: The file has been imported successfully and is ready for pasting. 
  3004.  
  3005. ACTION: Position the cursor (text view) or select the frame (graphics view) 
  3006. where the imported story should be added. Click on Edit, and then Paste. 
  3007.  
  3008.  
  3009. ΓòÉΓòÉΓòÉ 175. No search string specified. ΓòÉΓòÉΓòÉ
  3010.  
  3011. ERROR: You did not enter a string in the search string entry field. 
  3012.  
  3013. CAUSE: The program needs information (a search string) to search for. 
  3014.  
  3015. ACTION: Try one of the following: 
  3016.  
  3017. o Enter a search string. 
  3018.  
  3019. o Close the window by clicking on the Cancel button. 
  3020.  
  3021.  
  3022. ΓòÉΓòÉΓòÉ 176. String not found. ΓòÉΓòÉΓòÉ
  3023.  
  3024. INFORMATION: You specified information (search string) that is not in the 
  3025. story. 
  3026.  
  3027. CAUSE: The specified search string was not found in the story. 
  3028.  
  3029. ACTION: Try one of the following: 
  3030.  
  3031. o Enter another search string and click on the OK button. 
  3032.  
  3033. o Close the window by clicking on the Cancel button. 
  3034.  
  3035.  
  3036. ΓòÉΓòÉΓòÉ 177. Text style changed ΓòÉΓòÉΓòÉ
  3037.  
  3038. WARNING: The current text style has been changed. 
  3039.  
  3040. CAUSE: You changed the current Text Style Definition and then chose another 
  3041. style. The changed fields will be lost. 
  3042.  
  3043. ACTION: Try one of the following: 
  3044.  
  3045. o Select "Yes" accept the new style. 
  3046.  
  3047.   This sets the new style and discards any of the previous choices. 
  3048.  
  3049. o Select "No" to keep your current style. 
  3050.  
  3051.  
  3052. ΓòÉΓòÉΓòÉ 178. Printer not available ΓòÉΓòÉΓòÉ
  3053.  
  3054. Error: The printer you selected could not be opened for output. The print 
  3055. request is cancelled. 
  3056.  
  3057. CAUSE: Possible causes are: 
  3058.  
  3059. o The printer is not properly connected to the system. 
  3060.  
  3061. o There is a problem with the printer driver. 
  3062.  
  3063. ACTION: Try the following: 
  3064.  
  3065. o Make sure the printer is properly configured and connected. 
  3066.  
  3067.  
  3068. ΓòÉΓòÉΓòÉ 179. WARNING:  Changes to image will be discarded. ΓòÉΓòÉΓòÉ
  3069.  
  3070. WARNING: You have made a request that will cause the changes made to the 
  3071. current image to be discarded. 
  3072.  
  3073. CAUSE: Possible causes are: 
  3074.  
  3075. o Making a request to open another image file 
  3076.  
  3077. o Making a request to close the Text Plane Support window 
  3078.  
  3079. ACTION: Try one of the following: 
  3080.  
  3081. o Click on the OK button to continue and the changes will be discarded. 
  3082.  
  3083. o Cancel the request by clicking on the Cancel button.  Use Save or Save as to 
  3084.   save the changes made to the current image.  Then, make your request again. 
  3085.  
  3086.  
  3087. ΓòÉΓòÉΓòÉ 180. Literal text will be PERMANENTLY merged with image, do you wish to continue? ΓòÉΓòÉΓòÉ
  3088.  
  3089. INFO: You are merging the text plane with the image plane.  Once you do this, 
  3090. you will NOT be able to edit text fields separately from the image.  The text 
  3091. fields become part of the image itself. 
  3092.  
  3093. CAUSE: Possible causes are: 
  3094.  
  3095. o Selecting the menu option to merge the image and text planes together. 
  3096.  
  3097. ACTION: Try one of the following: 
  3098.  
  3099. o Click on OK to continue merging the image and text planes 
  3100.  
  3101. o Click on CANCEL to cancel the request to merge the image and text planes 
  3102.  
  3103.  
  3104. ΓòÉΓòÉΓòÉ 181. Unable to start Text Plane Support...terminating. ΓòÉΓòÉΓòÉ
  3105.  
  3106. ERROR: An internal error was encountered when trying to create the Text Plane 
  3107. Support window.  Text Plane Support cannot continue, it must be terminated. 
  3108.  
  3109. CAUSE: Possible causes are: 
  3110.  
  3111. o Too many tasks already running on the system. 
  3112.  
  3113. ACTION: Try one of the following: 
  3114.  
  3115. o End one or more of the tasks you already have running and try starting Text 
  3116.   Plane Support again. 
  3117.  
  3118.  
  3119. ΓòÉΓòÉΓòÉ 182. Do you wish to select another font? ΓòÉΓòÉΓòÉ
  3120.  
  3121. ERROR: The font required could not be loaded. list. 
  3122.  
  3123. CAUSE: Possible causes are: 
  3124.  
  3125. o The required font was not installed or was subsequently removed from the 
  3126.   system. 
  3127.  
  3128. ACTION: Try one of the following: 
  3129.  
  3130. o Click on YES to get a list of available fonts to select from. 
  3131.  
  3132. o Click on NO to cancel the request. 
  3133.  
  3134.  
  3135. ΓòÉΓòÉΓòÉ 183. Creating an AVC-type file with a non-standard extension, do you wish to continue? ΓòÉΓòÉΓòÉ
  3136.  
  3137. INFO: You are saving the image to a file name that does not have the '_IM' 
  3138. extension typical of AVC-type images.  All images, regardless of the type 
  3139. initially read in, are saved by Text Plane Support as AVC-type. 
  3140.  
  3141. CAUSE: Possible causes are: 
  3142.  
  3143. o You changed the '_IM' extension appended to the file name when you entered a 
  3144.   file name. 
  3145.  
  3146. o You accidentally erased the '_IM' extension appended to the file name shown 
  3147.   in the Save as... file name field. 
  3148.  
  3149. ACTION: Try one of the following: 
  3150.  
  3151. o Click on YES to save the file to the name specified, even though the 
  3152.   extension is not '_IM'. 
  3153.  
  3154. o Click on NO to cancel the Save as... request.  Select Save as... again and 
  3155.   ensure that the '_IM' extension is retained when keying a file name. 
  3156.  
  3157.  
  3158. ΓòÉΓòÉΓòÉ 184. Current style has been modified, continue without saving changes? ΓòÉΓòÉΓòÉ
  3159.  
  3160. INFO: You have made a request that will cause the style changes made to be 
  3161. discarded. 
  3162.  
  3163. CAUSE: Possible causes are: 
  3164.  
  3165. o You pressed the Esc key while in the Text Style Definition dialog. 
  3166.  
  3167. o You pressed the Copy Style button on the Text Style Definition dialog, but 
  3168.   changes have already been made to the current style. 
  3169.  
  3170. ACTION: Try one of the following: 
  3171.  
  3172. o Click on YES to continue and discard any changes made to the style. 
  3173.  
  3174. o Click on NO to cancel the request.  Click on Accept to the save the style 
  3175.   changes. 
  3176.  
  3177.  
  3178. ΓòÉΓòÉΓòÉ 185. Unable to find any required font files (._FN extension)...terminating. ΓòÉΓòÉΓòÉ
  3179.  
  3180. ERROR: Text Plane Support was unable to find any of the required font files on 
  3181. the system.  Text Plane Support cannot continue, it will be terminated. 
  3182.  
  3183. CAUSE: Possible causes are: 
  3184.  
  3185. o Font files were not loaded when Builder/2 was installed. 
  3186.  
  3187. o Font files were subsequently deleted after Builder/2 was installed. 
  3188.  
  3189. ACTION: Try one of the following: 
  3190.  
  3191. o Copy one or more of the font files from the installation disks/CD-ROM back 
  3192.   onto the system.  Then try starting Text Plane Support again. 
  3193.  
  3194.  
  3195. ΓòÉΓòÉΓòÉ 186. About to delete selected field, do you wish to continue? ΓòÉΓòÉΓòÉ
  3196.  
  3197. INFO: You have made a request to delete the currently selected text field or 
  3198. trigger field. 
  3199.  
  3200. CAUSE: Possible causes are: 
  3201.  
  3202. o You selected the menu option to delete a field or used the Ctrl+D accelerator 
  3203.   key. 
  3204.  
  3205. ACTION: Try one of the following: 
  3206.  
  3207. o Click on YES to delete the currently selected text or trigger field. 
  3208.  
  3209. o Click on NO to cancel the request to delete the currently selected trigger 
  3210.   field. 
  3211.  
  3212.  
  3213. ΓòÉΓòÉΓòÉ 187. About to delete all fields, do you wish to continue? ΓòÉΓòÉΓòÉ
  3214.  
  3215. INFO: You have made a request to delete all text and trigger fields defined on 
  3216. the current image. 
  3217.  
  3218. CAUSE: Possible causes are: 
  3219.  
  3220. o You selected the menu option to delete all text and trigger fields. 
  3221.  
  3222. ACTION: Try one of the following: 
  3223.  
  3224. o Click on YES to delete all text and trigger fields on the image. 
  3225.  
  3226. o Click on NO to cancel the request to delete all text and trigger fields. 
  3227.  
  3228.  
  3229. ΓòÉΓòÉΓòÉ 188. A text or trigger field must be selected first. ΓòÉΓòÉΓòÉ
  3230.  
  3231. ERROR: You made a request for a function that requires that a text or trigger 
  3232. field be selected. 
  3233.  
  3234. CAUSE: Possible causes are: 
  3235.  
  3236. o You selected an option from a menu. 
  3237.  
  3238. o You pressed one of the Toolbox buttons. 
  3239.  
  3240. ACTION: Try one of the following: 
  3241.  
  3242. o Select either a text or trigger field on the image and try your request 
  3243.   again. 
  3244.  
  3245.  
  3246. ΓòÉΓòÉΓòÉ 189. An image file must be opened first. ΓòÉΓòÉΓòÉ
  3247.  
  3248. ERROR: You selected a function that requires that an image file be opened 
  3249. before the function can be performed. 
  3250.  
  3251. CAUSE: Possible causes are: 
  3252.  
  3253. o Text Plane Support was started via Builder/2 or Perfect Image/2 but the image 
  3254.   file could not be loaded. 
  3255.  
  3256. o A request was made to open an image file, the open request failed, so there 
  3257.   is currently no image loaded in Text Plane Support. 
  3258.  
  3259. ACTION: Try one of the following: 
  3260.  
  3261. o Select Open from the File menu and open an image file. 
  3262.  
  3263. o Close the Text Plane Support window. 
  3264.  
  3265.  
  3266. ΓòÉΓòÉΓòÉ 190. Text mode is currently inactive. ΓòÉΓòÉΓòÉ
  3267.  
  3268. ERROR: You have made a request that applies to text fields, but text mode is 
  3269. currently inactive. 
  3270.  
  3271. CAUSE: Possible causes are: 
  3272.  
  3273. o You selected a menu option that specifically applies to text fields. 
  3274.  
  3275. o You used an accelerator key sequence that performs a function that 
  3276.   specifically applies to text fields. 
  3277.  
  3278. ACTION: Try one of the following: 
  3279.  
  3280. o Press the text mode button in the Toolbox to activate text mode. 
  3281.  
  3282. o Select the text mode option on the View menu to activate text mode. 
  3283.  
  3284. o Use accelerator key Ctrl+T to activate text mode. 
  3285.  
  3286.  
  3287. ΓòÉΓòÉΓòÉ 191. Both text and trigger modes are currently inactive. ΓòÉΓòÉΓòÉ
  3288.  
  3289. ERROR: You have made a request that applies to either text or trigger fields, 
  3290. but both modes are currently inactive. 
  3291.  
  3292. CAUSE: Possible causes are: 
  3293.  
  3294. o You selected a menu option that applies to text or trigger fields. 
  3295.  
  3296. o You used an accelerator key sequence that performs a function that applies to 
  3297.   text or trigger fields. 
  3298.  
  3299. ACTION: Try one of the following: 
  3300.  
  3301. o Press the Text fields Tool box button to activate text mode. 
  3302.  
  3303. o Select Text fields on the View menu to activate text mode. 
  3304.  
  3305. o Use accelerator key Ctrl+T to activate text mode. 
  3306.  
  3307. o Press the Trigger fields Tool box button to activate trigger mode. 
  3308.  
  3309. o Select Trigger fields on the View menu to activate trigger mode. 
  3310.  
  3311. o Use accelerator key Ctrl+R to activate trigger mode. 
  3312.  
  3313.  
  3314. ΓòÉΓòÉΓòÉ 192. Maximum number of text and/or trigger fields reached. ΓòÉΓòÉΓòÉ
  3315.  
  3316. ERROR: You are trying the create a new text or trigger field, but you are 
  3317. already at the maximum allowed. 
  3318.  
  3319. CAUSE: Possible causes are: 
  3320.  
  3321. o The total number of text and trigger fields is 255.  This is the maximum 
  3322.   number of text and trigger fields allowed. 
  3323.  
  3324. ACTION: Try one of the following: 
  3325.  
  3326. o Delete any text or trigger fields that are not needed. Try your request to 
  3327.   add the new text or trigger fields again. 
  3328.  
  3329.  
  3330. ΓòÉΓòÉΓòÉ 193. Insufficient memory available. ΓòÉΓòÉΓòÉ
  3331.  
  3332. ERROR: Memory required by Text Plane Support could not be acquired. 
  3333.  
  3334. CAUSE: Possible causes are: 
  3335.  
  3336. o Too many tasks already running on the system. 
  3337.  
  3338. o Not enough disk space remaining for OS/2 swapper file to use as virtual 
  3339.   memory. 
  3340.  
  3341. ACTION: Try one of the following: 
  3342.  
  3343. o Terminate one or more tasks already running on the System. 
  3344.  
  3345. o Try to free up as much space on the fixed disk for the operating system to 
  3346.   use as virtual memory. 
  3347.  
  3348.  
  3349. ΓòÉΓòÉΓòÉ 194. File already exists, do you want to replace it? ΓòÉΓòÉΓòÉ
  3350.  
  3351. INFO: You are trying to save the image file to a new file name, but a file with 
  3352. that name already exists. 
  3353.  
  3354. CAUSE: Possible causes are: 
  3355.  
  3356. o You mistyped the name in the Save as... filename field. 
  3357.  
  3358. ACTION: Try one of the following: 
  3359.  
  3360. o Click on YES to replace the existing image file. 
  3361.  
  3362. o Click on NO to cancel the Save as... request, the existing file will NOT be 
  3363.   replaced.  Then select Save as... from the File menu again and key a 
  3364.   different name. 
  3365.  
  3366.  
  3367. ΓòÉΓòÉΓòÉ 195. Requested point size not available for this font. ΓòÉΓòÉΓòÉ
  3368.  
  3369. ERROR: The point size required does not exist for the font selected. 
  3370.  
  3371. CAUSE: Possible causes are: 
  3372.  
  3373. o You selected a headline-size font (fonts ending with an H) which contains 
  3374.   only large point sizes, and the required point size is non-headline size. 
  3375.  
  3376. o You selected a normal font which contains various small to medium point 
  3377.   sizes, and the required point size is headline-size. 
  3378.  
  3379. ACTION: Try one of the following: 
  3380.  
  3381. o If you picked a headline-size font, pick a normal-size font instead. If you 
  3382.   picked a normal font, select a headline font. 
  3383.  
  3384.  
  3385. ΓòÉΓòÉΓòÉ 196. File not found. ΓòÉΓòÉΓòÉ
  3386.  
  3387. ERROR: Either the file specified could not be found or a component required by 
  3388. that file could not be found. 
  3389.  
  3390. CAUSE: The operating system could not find the file or a component required by 
  3391. the file you specified.  An example of a component is a font file (_FN 
  3392. extension).  Images that contain text have the font name(s) carried within the 
  3393. image.  The named fonts must be installed and available. 
  3394.  
  3395. ACTION: Do one of the following: 
  3396.  
  3397. o Check your spelling. 
  3398. o Verify that the named file exists. 
  3399. o Ensure that the font named in the error message is installed on the system in 
  3400.   the appropriate directory. 
  3401.  
  3402.  
  3403. ΓòÉΓòÉΓòÉ 197. Permission was denied when attempting to access a file. ΓòÉΓòÉΓòÉ
  3404.  
  3405. ERROR: You are trying to use a file that is not available to you. 
  3406.  
  3407. CAUSE: The file is already in use or locked. 
  3408.  
  3409. ACTION: Do one of the following: 
  3410.  
  3411. o Retry the operation. 
  3412. o find out what application is using the file. 
  3413. o Contact your administrator. 
  3414.  
  3415.  
  3416. ΓòÉΓòÉΓòÉ 198. Too many files are open at one time. ΓòÉΓòÉΓòÉ
  3417.  
  3418. ERROR: You are trying to use too many files. 
  3419.  
  3420. CAUSE: The FILES system limits the number of files that can be open at any one 
  3421. time.  The limit has been reached. 
  3422.  
  3423. ACTION: Try the following: 
  3424.  
  3425. o Close some currently open files. 
  3426. o Or increase the value  for the number of files in the FILES= statement in 
  3427.   your CONFIG.SYS, shutdown OS/2, and then restart the system by pressing the 
  3428.   Ctrl + Alt + Del keys. 
  3429. o Retry the operation after doing one of the above. 
  3430.  
  3431.  
  3432. ΓòÉΓòÉΓòÉ 199. The file is already being used by an application. ΓòÉΓòÉΓòÉ
  3433.  
  3434. ERROR: You are trying to use a file that is already in use. 
  3435.  
  3436. CAUSE: The file system prevents you from using a file that is in use or locked. 
  3437.  
  3438. ACTION: Try the following: 
  3439.  
  3440. o Stop any active applications not needed to find out which application is 
  3441.   using the file. 
  3442. o Retry the operation later when the file may be available. 
  3443. o Shutdown OS/2 and restart the system by pressing the Ctrl + Alt + Del keys. 
  3444.  
  3445.  
  3446. ΓòÉΓòÉΓòÉ 200. The file name is not permitted. ΓòÉΓòÉΓòÉ
  3447.  
  3448. ERROR: You've used a file name that is not recognized by the file system. 
  3449.  
  3450. CAUSE: The file system does not accept the file name containing the characters 
  3451. you typed. 
  3452.  
  3453. ACTION: 
  3454.  
  3455. o Correct the file name 
  3456.  
  3457.   In the OS/2 FAT file system: 
  3458.  
  3459.    - File names can contain up to eight letters, digits, or the following 
  3460.      special characters: 
  3461.  
  3462.           $ % ' - _ @ { } ~ ! # ( )
  3463.  
  3464.    - File extensions can be a combination of up to three letters, digits, or 
  3465.      special characters, preceded by a period. 
  3466.  
  3467.   In the OS/2 high performance file system (HPFS): 
  3468.  
  3469.    - The length of the complete path (drive, directories, and file name) cannot 
  3470.      exceed 260 characters. 
  3471.    - File names and directories can be up to 255 characters long. 
  3472.    - Blank characters or periods are accepted within the name (but they are 
  3473.      ignored at the end of a name). You can also use any of these special 
  3474.      characters: 
  3475.  
  3476.           + = ; , [ ]
  3477.  
  3478.  
  3479. ΓòÉΓòÉΓòÉ 201. The named file already exists. ΓòÉΓòÉΓòÉ
  3480.  
  3481. ERROR: You are trying to save a file that has the same name as an existing one. 
  3482.  
  3483. CAUSE: The file system will not let you overwrite an existing file. 
  3484.  
  3485. ACTION: Do the following: 
  3486.  
  3487. o Select a different name. 
  3488. o Erase or rename the existing file. 
  3489. o Retry the operation. 
  3490.  
  3491.  
  3492. ΓòÉΓòÉΓòÉ 202. The object was not found on disk. ΓòÉΓòÉΓòÉ
  3493.  
  3494. ERROR: You provided a name of an object that could not be found. 
  3495.  
  3496. CAUSE: The file system could not find an object by that name. 
  3497.  
  3498. ACTION: Do the following: 
  3499.  
  3500. o Check your spelling. 
  3501. o Check to see that the named file exists. 
  3502.  
  3503.  
  3504. ΓòÉΓòÉΓòÉ 203. Not enough memory is available. ΓòÉΓòÉΓòÉ
  3505.  
  3506. ERROR: You are trying to use more memory than the system has. 
  3507.  
  3508. CAUSE: The system could allocate any more storage. None was available. 
  3509.  
  3510. ACTION: Do the following: 
  3511.  
  3512. o Close any windows that are not needed. 
  3513. o Close all applications not being used. 
  3514. o Archive any large or infrequently used files or delete any unnecessary files 
  3515.   on the disk where the SWAPPER.DAT file exists. 
  3516.  
  3517.  
  3518. ΓòÉΓòÉΓòÉ 204. No disk space is available on the named drive. ΓòÉΓòÉΓòÉ
  3519.  
  3520. ERROR: You are trying to store a file where no space is available. 
  3521.  
  3522. CAUSE: The file you are trying to save is larger than the disk space available. 
  3523.  
  3524. ACTION: Do the following: 
  3525.  
  3526. o Archive any large or infrequently used files. 
  3527. o Delete any unnecessary files on the disk. 
  3528. o Retry the operation. 
  3529.  
  3530.  
  3531. ΓòÉΓòÉΓòÉ 205. The file extension is not permitted. ΓòÉΓòÉΓòÉ
  3532.  
  3533. ERROR: You specified a file extension that is not permitted. 
  3534.  
  3535. CAUSE: Application does not recognize the file extension. 
  3536.  
  3537. ACTION: Do the following: 
  3538.  
  3539. o Check your spelling. 
  3540. o Specify another file extension. 
  3541.  
  3542.  
  3543. ΓòÉΓòÉΓòÉ 206. The drive named is either incorrect or not ready. ΓòÉΓòÉΓòÉ
  3544.  
  3545. ERROR: You specified a drive that doesn't exist or is not ready. 
  3546.  
  3547. CAUSE: The system could not communicate with the named drive. 
  3548.  
  3549. ACTION: Do the following: 
  3550.  
  3551. o Check your spelling. 
  3552. o Check the drive to see if it is ready. 
  3553. o Retry the operation. 
  3554.  
  3555.  
  3556. ΓòÉΓòÉΓòÉ 207. Unable to open image ΓòÉΓòÉΓòÉ
  3557.  
  3558. ERROR: Unable to open the image.  Open cancelled. 
  3559.  
  3560. CAUSE: Possible causes are: 
  3561.  
  3562. o The file specified is not a supported image type. 
  3563.  
  3564. o No MMIO procedure is installed for the image format. 
  3565.  
  3566. o The image has an unsupported bit count. 
  3567.  
  3568. o Insufficient storage space is available. 
  3569.  
  3570. o The file is being used by another application. 
  3571.  
  3572. ACTION: Try one of the following: 
  3573.  
  3574. o Make sure there is sufficient storage space: 
  3575.  
  3576.    - Verify that your system meets the minimum requirements for your 
  3577.      application. 
  3578.  
  3579.    - Archive any large or infrequently used files on the drive where the image 
  3580.      is being saved (the directory is provided in the error window). 
  3581.  
  3582.    - Retry opening the image 
  3583.  
  3584. o Release access to the image by other applications. 
  3585.  
  3586. o Reinstall the MMIO procedures. 
  3587.  
  3588. o Refer to the application documentation for supported image format bit counts. 
  3589.  
  3590.  
  3591. ΓòÉΓòÉΓòÉ 208. Program cannot display this image. ΓòÉΓòÉΓòÉ
  3592.  
  3593. ERROR: You are attempting to display an image in an unsupported format. 
  3594.  
  3595. CAUSE: The image is not displayable by this program. Possible causes are: 
  3596.  
  3597. o The image is not one of the following formats: 
  3598.  
  3599.    AVC image 
  3600.  
  3601.    OS/2 1.3, OS/2 2.x, WIN 3.0 bitmap (BMP) 
  3602.  
  3603.    PCX Image 
  3604.  
  3605.    TIF image 
  3606.  
  3607.    Targa image 
  3608.  
  3609. o The image uses an unsupported data compression. 
  3610.  
  3611. o The image contains an unsupported number of colors. Supported are 8 bit 
  3612.   (pixel) images (256 colors). 
  3613.  
  3614. ACTION: Use an image conversion program to convert the image to a supported 
  3615. format. 
  3616.  
  3617.  
  3618. ΓòÉΓòÉΓòÉ 209. This operation results in loss of AVC text, triggers, input and output fields. ΓòÉΓòÉΓòÉ
  3619.  
  3620. WARNING:  You are attempting an operation that results in loss of AVC text, 
  3621. triggers, input and output fields. 
  3622.  
  3623. CAUSE:  The image being modified by contains other objects in addition to the 
  3624. image data, such as a separate text object.  These other objects will be 
  3625. discarded if the operation is continued. 
  3626.  
  3627. ACTION: Select OK to continue the operation and retain only the image data. 
  3628.  
  3629.  
  3630. ΓòÉΓòÉΓòÉ 210. The named file already exists.  Select OK to complete the save. ΓòÉΓòÉΓòÉ
  3631.  
  3632. WARNING:  You tried to save an image using a file name that already exists on 
  3633. disk. 
  3634.  
  3635. CAUSE: The file name specified already exists on disk. 
  3636.  
  3637. ACTION: Select OK to save the image using the file name specified.  The 
  3638. existing file will be replaced.  Select Cancel to stop the save operation. 
  3639.  
  3640.  
  3641. ΓòÉΓòÉΓòÉ 211. The image must be saved before editing text.  Select OK to save and continue. ΓòÉΓòÉΓòÉ
  3642.  
  3643. WARNING:  You tried to edit image text, but the image has not been saved to 
  3644. disk. 
  3645.  
  3646. CAUSE: Possible causes: 
  3647.  
  3648. o The image is new and has never been saved to disk. 
  3649. o The image has been modified since last being saved. 
  3650.  
  3651. ACTION: Select OK to save the image and continue to the text editor. Select 
  3652. Cancel to return without going to the text editor. 
  3653.  
  3654.  
  3655. ΓòÉΓòÉΓòÉ 212. An error occurred when attempting locate the printer. ΓòÉΓòÉΓòÉ
  3656.  
  3657. ERROR:  You tried to print an image, but the printer was not found. 
  3658.  
  3659. CAUSE: Possible causes: 
  3660.  
  3661. o The printer is not ready or set up properly. 
  3662. o The printer driver has a problem. 
  3663. o The name of the printer is not correct. 
  3664.  
  3665. ACTION: Check all of the possible causes, and then try to print again. 
  3666.  
  3667.  
  3668. ΓòÉΓòÉΓòÉ 213. A GSP error occurred. ΓòÉΓòÉΓòÉ
  3669.  
  3670. ERROR: The Graphic Screen Processor (GSP) detected an error. The GSP and system 
  3671. return codes are included in the message. 
  3672.  
  3673. CAUSE: An internal error was detected while handling an image. 
  3674.  
  3675. ACTION: Contact your administrator. 
  3676.  
  3677.  
  3678. ΓòÉΓòÉΓòÉ 214. Window creation failed! ΓòÉΓòÉΓòÉ
  3679.  
  3680. ERROR: A window could not be created. 
  3681.  
  3682. CAUSE: A system error was returned by the operating system while attempting to 
  3683. create a window. Perfect Image/2 will stop. 
  3684.  
  3685. ACTION: Restart the program. If this error repeats, contact your administrator. 
  3686.  
  3687.  
  3688. ΓòÉΓòÉΓòÉ 215. Window positioning failed! ΓòÉΓòÉΓòÉ
  3689.  
  3690. ERROR: The window could not be repositioned. 
  3691.  
  3692. CAUSE: The program detected an error while repositioning a window. The 
  3693. operating system responded with an error. Perfect Image/2 will stop. 
  3694.  
  3695. ACTION: Try one of the following: 
  3696.  
  3697. o Restart the program. 
  3698. o If the error continues contact your administrator. 
  3699.  
  3700.  
  3701. ΓòÉΓòÉΓòÉ 216. Insufficient storage available. ΓòÉΓòÉΓòÉ
  3702.  
  3703. ERROR: You tried to do something that requires more memory than you have 
  3704. available. 
  3705.  
  3706. CAUSE: All available machine storage is being used. You may be out of disk 
  3707. space or the system swapper file has reached its maximum capacity. 
  3708.  
  3709. ACTION: Try one of the following and then retry the action: 
  3710.  
  3711. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  3712. o Archive any large or infrequently used files. 
  3713. o Close any image windows that are not needed. 
  3714. o Close all applications not being used. 
  3715.  
  3716.  
  3717. ΓòÉΓòÉΓòÉ 217. Another instance of Perfect Image/2 is already ΓòÉΓòÉΓòÉ
  3718.  
  3719. using the video capture function. 
  3720.  
  3721. ERROR: You are trying to use video capture, but it is already being used. 
  3722.  
  3723. CAUSE: You are trying to access the Video Capture Adapter (VCA) with multiple 
  3724. instances of Perfect Image/2. Only one instance is allowed to have access to 
  3725. the adapter. 
  3726.  
  3727. ACTION: Do one of the following: 
  3728.  
  3729. o Use the other instance of Perfect Image/2 that has access to the VCA. 
  3730. o End the other instance of Perfect Image/2 and retry the video capture 
  3731.   initialization. 
  3732.  
  3733.  
  3734. ΓòÉΓòÉΓòÉ 218. The VCA device driver ICDD.SYS can not be found. ΓòÉΓòÉΓòÉ
  3735.  
  3736. ERROR: You are trying to use the Video Capture Adapter (VCA), but the device 
  3737. driver ICDD.SYS cannot be found. 
  3738.  
  3739. CAUSE: Possible causes are: 
  3740.  
  3741. o The system device driver file (ICDD.SYS) is missing. 
  3742. o The DEVICE statement for ICDD.SYS is missing in your CONFIG.SYS file. 
  3743. This file should have been copied to the system during product installation. 
  3744.  
  3745. ACTION: Do one of the following: 
  3746.  
  3747. o Verify that a DEVICE statement for ICDD.SYS is in your CONFIG.SYS file. A 
  3748.   statement similar to the following is needed in your CONFIG.SYS file in order 
  3749.   to use the VCA: 
  3750.  
  3751.         DEVICE= <your drive>:\<your directory>\BIN\ICDD.SYS
  3752.  
  3753.   For example, if the defaults are used for installation, the required DEVICE 
  3754.   statement is: 
  3755.  
  3756.         DEVICE=C:\PIMAGE\BIN\ICDD.SYS
  3757.  
  3758. o Reinstall Perfect Image/2 
  3759.  
  3760.  
  3761. ΓòÉΓòÉΓòÉ 219. The VCA adapter card cannot be found. ΓòÉΓòÉΓòÉ
  3762.  
  3763. ERROR: You tried to use the Video Capture Adapter (VCA), but it was not 
  3764. available. 
  3765.  
  3766. CAUSE: You have not installed the adapter, or the DEVICE statement required in 
  3767. your CONFIG.SYS is incorrect. 
  3768.  
  3769. ACTION: Do one of the following: 
  3770.  
  3771. o Install the Video Capture Adapter (VCA). 
  3772. o Verify that a DEVICE statement for ICDD.SYS is in your CONFIG.SYS file. A 
  3773.   statement similar to the following is needed in your CONFIG.SYS file in order 
  3774.   to use the VCA: 
  3775.  
  3776.         DEVICE= <your drive>:\<your directory>\BIN\ICDD.SYS
  3777.  
  3778.   For example, if the defaults are used for installation, the required DEVICE 
  3779.   statement is: 
  3780.  
  3781.         DEVICE=C:\PIMAGE\BIN\ICDD.SYS
  3782.  
  3783. o Reinstall Perfect Image/2 
  3784.  
  3785.  
  3786. ΓòÉΓòÉΓòÉ 220. The VCA card contains bad TARAMs. ΓòÉΓòÉΓòÉ
  3787.  
  3788. ERROR: You were trying to use video capture when a hardware error occurred. 
  3789.  
  3790. CAUSE: A hardware error was detected in the Video Capture Adapter (VCA) during 
  3791. the video capture process. 
  3792.  
  3793. ACTION: Contact your administrator. 
  3794.  
  3795.  
  3796. ΓòÉΓòÉΓòÉ 221. A system error occurred using the VCA card. ΓòÉΓòÉΓòÉ
  3797.  
  3798. ERROR: Your were using the Video Capture Adapter (VCA) card when an error was 
  3799. detected. 
  3800.  
  3801. CAUSE: A system error was detected during video capture. 
  3802.  
  3803. ACTION: Try one of the following: 
  3804.  
  3805. o Restart the program. 
  3806. o Run VCA diagnostic program. 
  3807. o Contact your administrator. 
  3808.  
  3809.  
  3810. ΓòÉΓòÉΓòÉ 222. Image has been modified.  Do you want to save it? ΓòÉΓòÉΓòÉ
  3811.  
  3812. WARNING: You are closing the image without saving the changes. 
  3813.  
  3814. CAUSE: Perfect Image/2 will not discard changes you have made to images unless 
  3815. you say it is OK to do so. 
  3816.  
  3817. ACTION: Do one of the following: 
  3818.  
  3819. o To save the image, click on Yes. 
  3820. o To discard the changes, click on No 
  3821. o To cancel the close and return to the image, click on Cancel. 
  3822.  
  3823.  
  3824. ΓòÉΓòÉΓòÉ 223. Height is out of range. ΓòÉΓòÉΓòÉ
  3825.  
  3826. ERROR: You entered the height of an image that was not accepted. 
  3827.  
  3828. CAUSE: The height is limited by two things: 
  3829.  
  3830. o Any number from 1 to 9999. 
  3831. o The amount of available memory and disk space available. 
  3832.  
  3833. ACTION: Do one of the following: 
  3834.  
  3835. o Enter a number from 1 to 9999. 
  3836. o Enter a smaller number. 
  3837.  
  3838.  
  3839. ΓòÉΓòÉΓòÉ 224. Width is out of range or too large. ΓòÉΓòÉΓòÉ
  3840.  
  3841. ERROR: You entered the width of an image that was not accepted. 
  3842.  
  3843. CAUSE: The value for width must be within the range from 1 to 9999. 
  3844.  
  3845. ACTION: Do one of the following: 
  3846.  
  3847. o Enter a new number from 1 to 9999. 
  3848. o Try a smaller number. 
  3849.  
  3850.  
  3851. ΓòÉΓòÉΓòÉ 225. Hue is out of range. ΓòÉΓòÉΓòÉ
  3852.  
  3853. ERROR: You entered a value for Hue that cannot be accepted. 
  3854.  
  3855. CAUSE: Perfect Image/2 lets you change the current value in degrees only (from 
  3856. a negative 180 degrees to a positive 180 degrees). This covers the full 
  3857. spectrum of color (360 degree color wheel). 
  3858.  
  3859. ACTION: Enter any acceptable value for Hue: from 180 and -180. 
  3860.  
  3861.  
  3862. ΓòÉΓòÉΓòÉ 226. Saturation is out of range. ΓòÉΓòÉΓòÉ
  3863.  
  3864. ERROR: You entered a value for Saturation that cannot be accepted. 
  3865.  
  3866. CAUSE: Perfect Image/2 lets you change the current value in percentage only 
  3867. (from a negative 100% to a positive 100%). 
  3868.  
  3869. ACTION: Enter a saturation value from 100 to -100. 
  3870.  
  3871.  
  3872. ΓòÉΓòÉΓòÉ 227. Contrast is out of range. ΓòÉΓòÉΓòÉ
  3873.  
  3874. ERROR: You entered a value for contrast that cannot be accepted. 
  3875.  
  3876. CAUSE: Perfect Image/2 lets you change the current value in percentage only 
  3877. (from a negative 100% to a positive 100%). 
  3878.  
  3879. ACTION: Enter a contrast value from 100 to -100. 
  3880.  
  3881.  
  3882. ΓòÉΓòÉΓòÉ 228. Brightness is out of range. ΓòÉΓòÉΓòÉ
  3883.  
  3884. ERROR: You entered a value for brightness that cannot be accepted. 
  3885.  
  3886. CAUSE: Perfect Image/2 lets you change the current value in percentage only 
  3887. (from a negative 100% to a positive 100%). 
  3888.  
  3889. ACTION: Enter a brightness value from 100 to -100. 
  3890.  
  3891.  
  3892. ΓòÉΓòÉΓòÉ 229. Shadow is out of range. ΓòÉΓòÉΓòÉ
  3893.  
  3894. ERROR: You entered a value for shadow that cannot be accepted. 
  3895.  
  3896. CAUSE: Perfect Image/2 lets you change the current value for shadow from 0 to 
  3897. 255.  The value for shadow cannot be greater than the value for highlight. 
  3898.  
  3899. ACTION: Enter a shadow value from 0 to 255 but not greater than highlight. 
  3900.  
  3901.  
  3902. ΓòÉΓòÉΓòÉ 230. Highlight is out of range. ΓòÉΓòÉΓòÉ
  3903.  
  3904. ERROR: You entered a value for highlight that cannot be accepted. 
  3905.  
  3906. CAUSE: Perfect Image/2 lets you change the current value for highlight from 0 
  3907. to 255.  The value for highlight cannot be less than the value for shadow. 
  3908.  
  3909. ACTION: Enter a highlight value from 0 to 255 but not less than shadow. 
  3910.  
  3911.  
  3912. ΓòÉΓòÉΓòÉ 231. Fuzz width is out of range. ΓòÉΓòÉΓòÉ
  3913.  
  3914. ERROR: You entered a value for Fuzz width that cannot be accepted. 
  3915.  
  3916. CAUSE: Perfect Image/2 lets you enter a value for fuzz width from 0 (no 
  3917. blending) to 10 (a 10 pel depth for blending). 
  3918.  
  3919. ACTION: Enter a fuzz width value from 0 to 10. 
  3920.  
  3921.  
  3922. ΓòÉΓòÉΓòÉ 232. Transparency is out of range. ΓòÉΓòÉΓòÉ
  3923.  
  3924. ERROR: You entered a value for Transparency that cannot be accepted. 
  3925.  
  3926. CAUSE: Perfect Image/2 lets you enter a value for Transparency from 0 (no 
  3927. transparency) to 100 (the pasted segment is invisible). 
  3928.  
  3929. ACTION: Enter a transparency value from 0 to 100. 
  3930.  
  3931.  
  3932. ΓòÉΓòÉΓòÉ 233. <All Files> not acceptable as type ΓòÉΓòÉΓòÉ
  3933.  
  3934. ERROR: You entered <All Files> for image file type. 
  3935.  
  3936. CAUSE: <All Files> can be used to show all file types in a selected directory, 
  3937. but may not be used as an image file format type when saving an image. 
  3938.  
  3939. ACTION: Enter an acceptable image file type before attempting to save the file. 
  3940.  
  3941.  
  3942. ΓòÉΓòÉΓòÉ 234. An error occurred when attempting ΓòÉΓòÉΓòÉ
  3943.  
  3944. to save the profile settings. 
  3945.  
  3946. ERROR: An error occurred when you tried saving the profile settings. 
  3947.  
  3948. CAUSE: Perfect Image/2 could not save the profile settings in the ULTITOOL.INI 
  3949. file. There may have been a system error when attempting to write to the file, 
  3950. or the operating system could not find a read/write drive in the search path. 
  3951.  
  3952. The search path is the: 
  3953.  
  3954. o Current directory 
  3955.  
  3956. o Directory where .EXE resides 
  3957.  
  3958. o Path given in UMPATH environment variable 
  3959.  
  3960. ACTION: Do one of the following: 
  3961.  
  3962. o Set the current directory to a drive that can write data to disk. 
  3963. o Verify that the directory in the UMPATH variable specifies a drive that can 
  3964.   write data on a disk. 
  3965.  
  3966.  
  3967. ΓòÉΓòÉΓòÉ 235. The file was not found. ΓòÉΓòÉΓòÉ
  3968.  
  3969. ERROR: You specified a file that could not be found. 
  3970.  
  3971. CAUSE: The operating system could not find the file you specified. 
  3972.  
  3973. ACTION: Do one of the following 
  3974.  
  3975. o Check your spelling. 
  3976. o Verify that the named file exists. 
  3977.  
  3978.  
  3979. ΓòÉΓòÉΓòÉ 236. Permission was denied when attempting to access a file. ΓòÉΓòÉΓòÉ
  3980.  
  3981. ERROR: You are trying to use a file that is not available to you. 
  3982.  
  3983. CAUSE: The file is already in use or locked. 
  3984.  
  3985. ACTION: Do one of the following: 
  3986.  
  3987. o Retry the operation. 
  3988. o find out what application is using the file. 
  3989. o Contact your administrator. 
  3990.  
  3991.  
  3992. ΓòÉΓòÉΓòÉ 237. Too many files are open at one time. ΓòÉΓòÉΓòÉ
  3993.  
  3994. ERROR: You are trying to use too many files. 
  3995.  
  3996. CAUSE: The FILES system limits the number of files that can be open at any one 
  3997. time.  The limit has been reached. 
  3998.  
  3999. ACTION: Try the following: 
  4000.  
  4001. o Close some currently open files. 
  4002. o Or increase the value  for the number of files in the FILES= statement in 
  4003.   your CONFIG.SYS, shutdown OS/2, and then restart the system by pressing the 
  4004.   Ctrl + Alt + Del keys. 
  4005. o Retry the operation after doing one of the above. 
  4006.  
  4007.  
  4008. ΓòÉΓòÉΓòÉ 238. The file is already being used by an application. ΓòÉΓòÉΓòÉ
  4009.  
  4010. ERROR: You are trying to use a file that is already in use. 
  4011.  
  4012. CAUSE: The file system prevents you from using a file that is in use or locked. 
  4013.  
  4014. ACTION: Try the following: 
  4015.  
  4016. o Stop any active applications not needed to find out which application is 
  4017.   using the file. 
  4018. o Retry the operation later when the file may be available. 
  4019. o Shutdown OS/2 and restart the system by pressing the Ctrl + Alt + Del keys. 
  4020.  
  4021.  
  4022. ΓòÉΓòÉΓòÉ 239. The file name is not permitted. ΓòÉΓòÉΓòÉ
  4023.  
  4024. ERROR: You've used a file name that is not recognized by the file system. 
  4025.  
  4026. CAUSE: The file system does not accept the file name containing the characters 
  4027. you typed. 
  4028.  
  4029. ACTION: 
  4030.  
  4031. o Correct the file name 
  4032.  
  4033.   In the OS/2 FAT file system: 
  4034.  
  4035.    - File names can contain up to eight letters, digits, or the following 
  4036.      special characters: 
  4037.  
  4038.           $ % ' - _ @ { } ~ ! # ( )
  4039.  
  4040.    - File extensions can be a combination of up to three letters, digits, or 
  4041.      special characters, preceded by a period. 
  4042.  
  4043.   In the OS/2 high performance file system (HPFS): 
  4044.  
  4045.    - The length of the complete path (drive, directories, and file name) cannot 
  4046.      exceed 260 characters. 
  4047.    - File names and directories can be up to 255 characters long. 
  4048.    - Blank characters or periods are accepted within the name (but they are 
  4049.      ignored at the end of a name). You can also use any of these special 
  4050.      characters: 
  4051.  
  4052.           + = ; , [ ]
  4053.  
  4054.  
  4055. ΓòÉΓòÉΓòÉ 240. The named file already exists. ΓòÉΓòÉΓòÉ
  4056.  
  4057. ERROR: You are trying to save a file that has the same name as an existing one. 
  4058.  
  4059. CAUSE: The file system will not let you overwrite an existing file. 
  4060.  
  4061. ACTION: Do the following: 
  4062.  
  4063. o Select a different name. 
  4064. o Erase or rename the existing file. 
  4065. o Retry the operation. 
  4066.  
  4067.  
  4068. ΓòÉΓòÉΓòÉ 241. The object was not found on disk. ΓòÉΓòÉΓòÉ
  4069.  
  4070. ERROR: You provided a name of an object that could not be found. 
  4071.  
  4072. CAUSE: The file system could not find an object by that name. 
  4073.  
  4074. ACTION: Do the following: 
  4075.  
  4076. o Check your spelling. 
  4077. o Check to see that the named file exists. 
  4078.  
  4079.  
  4080. ΓòÉΓòÉΓòÉ 242. Not enough memory is available. ΓòÉΓòÉΓòÉ
  4081.  
  4082. ERROR: You are trying to use more memory than the system has. 
  4083.  
  4084. CAUSE: The system could allocate any more storage. None was available. 
  4085.  
  4086. ACTION: Do the following: 
  4087.  
  4088. o Close any image windows that are not needed. 
  4089. o Close all applications not being used. 
  4090. o Archive any large or infrequently used files or delete any unnecessary files 
  4091.   on the disk where the SWAPPER.DAT file exists. 
  4092.  
  4093.  
  4094. ΓòÉΓòÉΓòÉ 243. No disk space is available on the named drive. ΓòÉΓòÉΓòÉ
  4095.  
  4096. ERROR: You are trying to store a file where no space is available. 
  4097.  
  4098. CAUSE: The file you are trying to save is larger than the disk space available. 
  4099.  
  4100. ACTION: Do the following: 
  4101.  
  4102. o Archive any large or infrequently used files. 
  4103. o Delete any unnecessary files on the disk. 
  4104. o Retry the operation. 
  4105.  
  4106.  
  4107. ΓòÉΓòÉΓòÉ 244. The file extension is not permitted. ΓòÉΓòÉΓòÉ
  4108.  
  4109. ERROR: You specified a file extension that is not permitted. 
  4110.  
  4111. CAUSE: Perfect Image/2 does not recognize the file extension. 
  4112.  
  4113. ACTION: Do the following: 
  4114.  
  4115. o Check your spelling. 
  4116. o Specify another file extension. 
  4117.  
  4118.  
  4119. ΓòÉΓòÉΓòÉ 245. The drive named is either incorrect or not ready. ΓòÉΓòÉΓòÉ
  4120.  
  4121. ERROR: You specified a drive that doesn't exist or is not ready. 
  4122.  
  4123. CAUSE: The system could not communicate with the named drive. 
  4124.  
  4125. ACTION: Do the following: 
  4126.  
  4127. o Check your spelling. 
  4128. o Check the drive to see if it is ready. 
  4129. o Retry the operation. 
  4130.  
  4131.  
  4132. ΓòÉΓòÉΓòÉ 246. Unable to open image ΓòÉΓòÉΓòÉ
  4133.  
  4134. ERROR: Unable to open the image.  Open cancelled. 
  4135.  
  4136. CAUSE: Possible causes are: 
  4137.  
  4138. o The file specified is not a supported image type. 
  4139.  
  4140. o No MMIO procedure is installed for the image format. 
  4141.  
  4142. o The image has an unsupported bit count. 
  4143.  
  4144. o Insufficient storage space is available. 
  4145.  
  4146. o The file is being used by another application. 
  4147.  
  4148. ACTION: Try one of the following: 
  4149.  
  4150. o Make sure there is sufficient storage space: 
  4151.  
  4152.    - Verify that your system meets the minimum requirements for Perfect 
  4153.      Image/2. 
  4154.  
  4155.    - Archive any large or infrequently used files on the drive where the image 
  4156.      is being saved (the directory is provided in the error window). 
  4157.  
  4158.    - Retry opening the image 
  4159.  
  4160. o Release access to the image by other applications. 
  4161.  
  4162. o Reinstall Perfect Image/2 following the instructions in the Perfect Image/2 
  4163.   Users Guide (to reinstall MMIO procedures). 
  4164.  
  4165. o Refer to the Perfect Image/2 Users Guide for supported image format bit 
  4166.   counts. 
  4167.  
  4168.  
  4169. ΓòÉΓòÉΓòÉ 247. Unable to save image ΓòÉΓòÉΓòÉ
  4170.  
  4171. ERROR: Unable to save the image.  Save cancelled. 
  4172.  
  4173. CAUSE: Possible causes are: 
  4174.  
  4175. o You don't have permission to write the file. 
  4176.  
  4177. o The diskette is write protected. 
  4178.  
  4179. o Insufficient storage space is available. 
  4180.  
  4181. o The file is being used by another application. 
  4182.  
  4183. o The path specified is invalid. 
  4184.  
  4185. ACTION: Try one of the following: 
  4186.  
  4187. o Check the path name spelling. 
  4188.  
  4189. o Check the access permissions on the file, directory, or drive. 
  4190.  
  4191.   Method varies by file system type (for example, FAT, HPFS, or LAN drive). 
  4192.   Contact your administrator. 
  4193.  
  4194. o If saving to a diskette, check the position of the write protect tab. 
  4195.  
  4196. o Make sure there is sufficient storage space: 
  4197.  
  4198.    - Verify that your system meets the minimum requirements for Perfect 
  4199.      Image/2. 
  4200.  
  4201.    - Archive any large or infrequently used files on the drive where the image 
  4202.      is being saved (the directory is provided in the error window). 
  4203.  
  4204.    - Retry saving the file. 
  4205.  
  4206.  
  4207. ΓòÉΓòÉΓòÉ 248. Unable to find file "UTSYSPAL.LUT". ΓòÉΓòÉΓòÉ
  4208.  
  4209. ERROR: Unable to find file "UTSYSPAL.LUT".  Perfect Image/2 will be closed. 
  4210.  
  4211. CAUSE: Possible causes are: 
  4212.  
  4213. o The file is not installed in your system. 
  4214.  
  4215. o The environment variable UMPATH does not specify the directory where the file 
  4216.   is stored. 
  4217.  
  4218. ACTION: Try the following: 
  4219.  
  4220. o Reinstall Perfect Image/2 following the instructions in the Perfect Image/2 
  4221.   Users Guide. 
  4222.  
  4223.  
  4224. ΓòÉΓòÉΓòÉ 249. Value entered is too long. Change not accepted. ΓòÉΓòÉΓòÉ
  4225.  
  4226. ERROR: You have entered too many characters for the field. (The field name is 
  4227. provided in the error window.) 
  4228.  
  4229. CAUSE: You have entered too many characters for the field. 
  4230.  
  4231. ACTION: Re-enter the data. 
  4232.  
  4233.  
  4234. ΓòÉΓòÉΓòÉ 250. Value conflicts with the field attribute.                          ter. ΓòÉΓòÉΓòÉ
  4235.  
  4236. ERROR: You have entered data which contradicts the field attribute. (The field 
  4237. name is provided in the error window.) 
  4238.  
  4239. CAUSE: Possible causes are: 
  4240.  
  4241. o There is non-numeric data in a numeric field. 
  4242. o Incorrect data for date, time, or timestamp field. 
  4243. o Unacceptable data for logical field. 
  4244. o Value is outside the range that is acceptable to integer or decimal field. 
  4245.  
  4246. ACTION: Try one of the following: 
  4247.  
  4248. o correct the value according to the field attribute format provided in this 
  4249.   message. 
  4250. o If the symptom persists, contact your administrator. 
  4251.  
  4252.  
  4253. ΓòÉΓòÉΓòÉ 251. Can't open the database and table. ΓòÉΓòÉΓòÉ
  4254.  
  4255. ERROR: You are trying to open a database and table that cannot be opened. (The 
  4256. database and table names are provided in the error window.) 
  4257.  
  4258. CAUSE: Possible causes are: 
  4259.  
  4260. o Incorrect database or table name. 
  4261. o Incorrect logon userid or password. 
  4262. o Incorrect Server id or Oracle. 
  4263.  
  4264. ACTION: Try one of the following: 
  4265.  
  4266. o Correct the database name, table name, logon userid, password,  or server ID 
  4267.   and try it again. 
  4268. o If you get this error message by double clicking the query result file, try 
  4269.   running the query again. 
  4270. o If the symptom persists, contact your administrator. 
  4271.  
  4272.  
  4273. ΓòÉΓòÉΓòÉ 252. Cannot open database table. ΓòÉΓòÉΓòÉ
  4274.  
  4275. ERROR: You are trying to open a database that could not be opened. (The 
  4276. database type and name is provided in the error window.) 
  4277.  
  4278. CAUSE: Possible causes are: 
  4279.  
  4280. o You misspelled the database name. 
  4281. o The file doesn't exist. 
  4282. o The file exists but is not in the correct DBase format. 
  4283.  
  4284. ACTION: Try one of the following: 
  4285.  
  4286. o Use the correct DBase name. 
  4287. o If you get this error message by double clicking the query result file, try 
  4288.   running the query again. 
  4289. o If the symptom persists, contact your administrator. 
  4290.  
  4291.  
  4292. ΓòÉΓòÉΓòÉ 253. Database has been changed. Save the change ? ΓòÉΓòÉΓòÉ
  4293.  
  4294. ERROR: You tried to exit without saving the change to database. 
  4295.  
  4296. CAUSE: The program asks for confirmation before saving the changes to the 
  4297. database. 
  4298.  
  4299. ACTION: Try one of the following: 
  4300.  
  4301. o Click on 'Yes' if you want to save the changes and then exit the Query Result 
  4302.   Viewer. 
  4303. o Click on 'No' to exit the Query Result Viewer without saving the changes. 
  4304. o Click on 'Cancel' to cancel to action of exiting the Query Result Viewer. 
  4305. o If the symptom persists, contact your administrator. 
  4306.  
  4307.  
  4308. ΓòÉΓòÉΓòÉ 254. Database is too big to view! ΓòÉΓòÉΓòÉ
  4309.  
  4310. ERROR: You are trying to display more records than the Query Result Viewer can 
  4311. handle. 
  4312.  
  4313. CAUSE: Possible causes are: 
  4314.  
  4315. o A memory allocation error. 
  4316.  
  4317. ACTION: Try one of the following: 
  4318.  
  4319. o Rewrite the query so that less database records/rows are selected. 
  4320. o Add more memory to your computer. 
  4321. o Try to run it later when more resource is available. 
  4322. o If the symptom persists, contact your administrator. 
  4323.  
  4324.  
  4325. ΓòÉΓòÉΓòÉ 255. Busy loading another database. Please try later! ΓòÉΓòÉΓòÉ
  4326.  
  4327. ERROR: You tried to open another database while the Query Result Viewer is 
  4328. already loading a database or query result. 
  4329.  
  4330. CAUSE: Possible causes are: 
  4331.  
  4332. o You are opening another database too soon. 
  4333.  
  4334. ACTION: Try one of the following: 
  4335.  
  4336. o Open the other database later. 
  4337. o If the symptom persists, contact your administrator. 
  4338.  
  4339.  
  4340. ΓòÉΓòÉΓòÉ 256. Can't not read database record. ΓòÉΓòÉΓòÉ
  4341.  
  4342. ERROR: The program encountered an error while fetching a record from SQL-like 
  4343. database. The database and the cause of the error are reported in the window. 
  4344.  
  4345. CAUSE: See the message for specific detail. 
  4346.  
  4347. ACTION: Try one of the following: 
  4348.  
  4349. o Try to open the database later. 
  4350. o Contact your database administrator. 
  4351.  
  4352.  
  4353. ΓòÉΓòÉΓòÉ 257. Can't not read database record.                                    e ? ΓòÉΓòÉΓòÉ
  4354.  
  4355. ERROR: The program encountered an error when fetching a record from a dBase IV 
  4356. table. 
  4357.  
  4358. CAUSE: See the message for specific detail. 
  4359.  
  4360. ACTION: Try one of the following: 
  4361.  
  4362. o Try to open the database later. 
  4363. o Contact your database administrator. 
  4364.  
  4365.  
  4366. ΓòÉΓòÉΓòÉ 258. Missing an input field! ΓòÉΓòÉΓòÉ
  4367.  
  4368. ERROR: You did not fill out all the information required to create or convert a 
  4369. Light Table folder. 
  4370.  
  4371. CAUSE: Possible causes are: 
  4372.  
  4373. o You didn't fill out the Folder Name for the LTFolder query result. 
  4374.  
  4375. o You didn't fill out the Folder Name or select the Title field for the 
  4376.   database query result. The Title field is used as the object title for 
  4377.   objects created in the folder. 
  4378.  
  4379. ACTION: Enter the missing name(s). 
  4380.  
  4381.  
  4382. ΓòÉΓòÉΓòÉ 259. Missing an input field! ΓòÉΓòÉΓòÉ
  4383.  
  4384. ERROR: You did not fill out all the information required to open an Oracle 
  4385. table or an OS/2 Database Manager table. 
  4386.  
  4387. CAUSE: Possible causes are: 
  4388.  
  4389. o You didn't fill out the Database Name and/or Table name. 
  4390.  
  4391. o You didn't fill out the userid or password. 
  4392.  
  4393. o You didn't fill out the Server name. 
  4394.  
  4395. ACTION: Enter the missing name(s). 
  4396.  
  4397.  
  4398. ΓòÉΓòÉΓòÉ 260. SQL statement failed. ΓòÉΓòÉΓòÉ
  4399.  
  4400. ERROR: The program has generated a SQL statement that failed. (The statement 
  4401. that failed is provided in the error window.) 
  4402.  
  4403. CAUSE: Possible causes are: 
  4404.  
  4405. o Incorrect field name or table name in SQL statement. 
  4406.  
  4407. o Incorrect field value in SQL statement. 
  4408.  
  4409. o No record in the table satisfies the criteria specified in the WHERE clause. 
  4410.  
  4411. o You do not have authority to update the record in the table. 
  4412.  
  4413. ACTION: Try one of the following: 
  4414.  
  4415. o Check that the field exists in the table. 
  4416.  
  4417. o Correct the value for the field in the SQL statement (the field that the SQL 
  4418.   statement is updating) and save it again. 
  4419.  
  4420. o Verify that you have the authority to change fields in the table specified in 
  4421.   the SQL statement. 
  4422.  
  4423. o Verify that the record (the record that satisfies the criteria specified in 
  4424.   the WHERE clause) exists in the table. 
  4425.  
  4426.  
  4427. ΓòÉΓòÉΓòÉ 261. Drag/Drop error: Unable to allocate memory ΓòÉΓòÉΓòÉ
  4428.  
  4429. ERROR: You are trying to drag and drop an object but the system cannot allocate 
  4430. enough memory. 
  4431.  
  4432. CAUSE: System memory is unavailable. 
  4433.  
  4434. ACTION: Try one of the following: 
  4435.  
  4436. o Try to drag and drop the object again. 
  4437.  
  4438. o Close unneeded applications or windows. 
  4439.  
  4440. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  4441.  
  4442. o Shutdown OS/2 and restart the system. 
  4443.  
  4444. o If the symptom persists, call your administrator. 
  4445.  
  4446.  
  4447. ΓòÉΓòÉΓòÉ 262. Drag/Drop error: Unable to allocate memory. ΓòÉΓòÉΓòÉ
  4448.  
  4449. ERROR: You are trying to drag and drop an object but the system cannot allocate 
  4450. more memory. 
  4451.  
  4452. CAUSE: Memory is unavailable. 
  4453.  
  4454. ACTION: Try one of the following: 
  4455.  
  4456. o Try to drag and drop the object again. 
  4457.  
  4458. o Close unneeded applications or windows. 
  4459.  
  4460. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  4461.  
  4462. o Shutdown OS/2 and restart the system. 
  4463.  
  4464. o If the symptom persists, call your administrator. 
  4465.  
  4466.  
  4467. ΓòÉΓòÉΓòÉ 263. Drag/Drop error: Unable to access shared memory. ΓòÉΓòÉΓòÉ
  4468.  
  4469. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4470. but memory is not available. (The named shared memory object is provided in the 
  4471. error window.) 
  4472.  
  4473. CAUSE: Memory is unavailable. 
  4474.  
  4475. ACTION: Try one of the following: 
  4476.  
  4477. o Try to drag and drop the object again. 
  4478. o Shutdown OS/2 and restart the system. 
  4479. o If the symptom persists, call your administrator. 
  4480.  
  4481.  
  4482. ΓòÉΓòÉΓòÉ 264. Drag/Drop error: Unable to access drag data. ΓòÉΓòÉΓòÉ
  4483.  
  4484. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4485. but it fails. 
  4486.  
  4487. CAUSE: The system is busy. 
  4488.  
  4489. ACTION: Try one of the following: 
  4490.  
  4491. o Try to drag and drop the object again. 
  4492. o Shutdown OS/2 and restart the system, then try to drag and drop the object 
  4493.   again. 
  4494. o If the symptom persists, call your administrator. 
  4495.  
  4496.  
  4497. ΓòÉΓòÉΓòÉ 265. Drag/Drop error: Drop Operation is not allowed. ΓòÉΓòÉΓòÉ
  4498.  
  4499. ERROR: You are using a release of Query Result Viewer that does not permit 
  4500. dropping objects. 
  4501.  
  4502. CAUSE: This release does not support dropping objects. 
  4503.  
  4504. ACTION: Avoid dropping objects or get a later release of Workplace/2. 
  4505.  
  4506.  
  4507. ΓòÉΓòÉΓòÉ 266. Drag/Drop error: Unable to free unused resources. ΓòÉΓòÉΓòÉ
  4508.  
  4509. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4510. but it fails. 
  4511.  
  4512. CAUSE: System is busy. 
  4513.  
  4514. ACTION: Try one of the following: 
  4515.  
  4516. o Try to drag and drop the object again. 
  4517. o Shutdown OS/2 and restart the system, then try to drag and drop the object 
  4518.   again. 
  4519. o If the symptom persists, call your administrator. 
  4520.  
  4521.  
  4522. ΓòÉΓòÉΓòÉ 267. Drag/Drop error: Unable to free unused resources. ΓòÉΓòÉΓòÉ
  4523.  
  4524. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4525. but it fails. 
  4526.  
  4527. CAUSE: System is busy. 
  4528.  
  4529. ACTION: Try one of the following: 
  4530.  
  4531. o Try to drag and drop the object again. 
  4532. o Shutdown OS/2 and restart the system, then try to drag and drop the object 
  4533.   again. 
  4534. o If the symptom persists, call your administrator. 
  4535.  
  4536.  
  4537. ΓòÉΓòÉΓòÉ 268. Drag/Drop error: Unable to complete drag and drop. ΓòÉΓòÉΓòÉ
  4538.  
  4539. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4540. but it fails. 
  4541.  
  4542. CAUSE: Possible causes are: 
  4543.  
  4544. o The system is busy. 
  4545. o Memory is not available. 
  4546.  
  4547. ACTION: Try one of the following: 
  4548.  
  4549. o Try to drag and drop the object again. 
  4550. o Close unneeded applications or windows. 
  4551. o Delete any unnecessary files on the disk 
  4552. o Shutdown OS/2 and restart the system, then try to drag and drop the object 
  4553.   again. 
  4554. o If the symptom persists, call your administrator. 
  4555.  
  4556.  
  4557. ΓòÉΓòÉΓòÉ 269. Drag/Drop error: Unable to access Container information. ΓòÉΓòÉΓòÉ
  4558.  
  4559. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4560. but it fails. 
  4561.  
  4562. CAUSE: Possible causes are: 
  4563.  
  4564. o Query Result Viewer is not responding. 
  4565. o System is busy. 
  4566.  
  4567. ACTION: Try one of the following: 
  4568.  
  4569. o Try to drag and drop the object again. 
  4570. o Restart the Query Result Viewer. 
  4571. o Shutdown OS/2 and restart the system, then try to drag and drop the object. 
  4572. o If the symptom persists, call your administrator. 
  4573.  
  4574.  
  4575. ΓòÉΓòÉΓòÉ 270. Drag/Drop error: Unable to access Drag/Drop data. ΓòÉΓòÉΓòÉ
  4576.  
  4577. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4578. but it fails. 
  4579.  
  4580. CAUSE: The system is busy. 
  4581.  
  4582. ACTION: Try one of the following: 
  4583.  
  4584. o Try to drag and drop the object again. 
  4585. o Restart the Query Result Viewer. 
  4586. o Shutdown OS/2 and restart the system, then try to drag and drop the object. 
  4587. o If the symptom persists, call your administrator. 
  4588.  
  4589.  
  4590. ΓòÉΓòÉΓòÉ 271. Drag/Drop error: Unable to access Drag/Drop data. ΓòÉΓòÉΓòÉ
  4591.  
  4592. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4593. but it fails. 
  4594.  
  4595. CAUSE: The system is busy. 
  4596.  
  4597. ACTION: Try one of the following: 
  4598.  
  4599. o Try to drag and drop the object again. 
  4600. o Restart the Query Result Viewer. 
  4601. o Shutdown OS/2 and restart the system, then try to drag and drop the object 
  4602.   again. 
  4603. o If the symptom persists, call your administrator. 
  4604.  
  4605.  
  4606. ΓòÉΓòÉΓòÉ 272. Drag/Drop error: Cannot create data for Drag/Drop. ΓòÉΓòÉΓòÉ
  4607.  
  4608. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4609. but it fails. 
  4610.  
  4611. CAUSE: Possible causes are: 
  4612.  
  4613. o Query Result Viewer is not responding. 
  4614. o The system is busy. 
  4615.  
  4616. ACTION: Try one of the following: 
  4617.  
  4618. o Try to drag and drop the object again. 
  4619. o Close and Restart the Query Result Viewer. 
  4620. o Shutdown OS/2 and restart the system, then try to drag and drop the object. 
  4621. o If the symptom persists, call your administrator. 
  4622.  
  4623.  
  4624. ΓòÉΓòÉΓòÉ 273. Drag/Drop error: Unable to update target database. ΓòÉΓòÉΓòÉ
  4625.  
  4626. ERROR: You are trying to drag and drop an object into a database but it fails. 
  4627.  
  4628. CAUSE: Possible causes are: 
  4629.  
  4630. o The program cannot put a record into the target database. 
  4631. o The database is unavailable for write access. 
  4632.  
  4633. ACTION: Try one of the following: 
  4634.  
  4635. o Try the same drag and drop again. 
  4636. o Verify availability and access permissions of the database. 
  4637. o Contact your database administrator. 
  4638.  
  4639.  
  4640. ΓòÉΓòÉΓòÉ 274. Drag/Drop error: Closing database failed. ΓòÉΓòÉΓòÉ
  4641.  
  4642. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4643. but it fails. (The database name is provided in the error window.) 
  4644.  
  4645. CAUSE: Possible causes are: 
  4646.  
  4647. o The Program cannot open or close database. 
  4648. o The database is being used by other programs. 
  4649.  
  4650. ACTION: Try one of the following: 
  4651.  
  4652. o Try the same drag and drop again. 
  4653. o Verify availability and access permissions of database. 
  4654. o Contact your database administrator. 
  4655.  
  4656.  
  4657. ΓòÉΓòÉΓòÉ 275. Drag/Drop error: Error in setting up Drag/Drop data record. ΓòÉΓòÉΓòÉ
  4658.  
  4659. ERROR: You are trying to drag and drop an object using the Query Result Viewer 
  4660. but it fails. 
  4661.  
  4662. CAUSE: The drag and drop data record is too large. 
  4663.  
  4664. ACTION: Try one of the following: 
  4665.  
  4666. o Try to drag and drop the object again. 
  4667. o Restart the Query Result Viewer. 
  4668. o Shutdown OS/2 and restart the system. 
  4669. o Try to drag and drop the object again. 
  4670. o If the symptom persists, call your administrator. 
  4671.  
  4672.  
  4673. ΓòÉΓòÉΓòÉ 276. Folder creation failed. ΓòÉΓòÉΓòÉ
  4674.  
  4675. ERROR: You are trying to create a Light Table folder but the process failed. 
  4676. (The cause of error is provided in the error window.) 
  4677.  
  4678. CAUSE: Possible causes are: 
  4679.  
  4680. o A memory allocation error. 
  4681. o The Workplace/2 server for PM application is not running. 
  4682. o The class dll for Light Table folder cannot be loaded. 
  4683. o The message queue or event semaphore was destroyed. 
  4684. o The system is busy. 
  4685.  
  4686. ACTION: Try one of the following: 
  4687.  
  4688. o Try the request later. 
  4689. o Open the Templates folder and retry your request. 
  4690. o Shutdown OS/2 and restart the system. 
  4691. o If the symptom persists, call your administrator. 
  4692.  
  4693.  
  4694. ΓòÉΓòÉΓòÉ 277. Object creation in Light Table folder failed. ΓòÉΓòÉΓòÉ
  4695.  
  4696. ERROR: The LTDataFile object or LT Reference object creation failed. (The cause 
  4697. of error is provided in the error window.) 
  4698.  
  4699. CAUSE: Possible causes are: 
  4700.  
  4701. o The system is busy. 
  4702. o A memory allocation error. 
  4703. o The Workplace/2 sever for PM application is not running. 
  4704. o The class dll for the LT Reference object cannot be loaded. 
  4705. o The message queue or event semaphore was destroyed. 
  4706.  
  4707. ACTION: Try one of the following: 
  4708.  
  4709. o Try the request later. 
  4710. o Open the Templates folder and retry your request. 
  4711. o Shutdown OS/2 and restart the system. 
  4712. o If the symptom persists, call your administrator. 
  4713.  
  4714.  
  4715. ΓòÉΓòÉΓòÉ 278. Folder was created but not completed. ΓòÉΓòÉΓòÉ
  4716.  
  4717. ERROR: You created a Light Table folder, but encountering errors while creating 
  4718. folder schema. 
  4719.  
  4720. CAUSE: Possible causes are: 
  4721.  
  4722. o Cannot get folder schema from the original Light Table folder 
  4723.  
  4724. o Cannot put folder schema to the newly created Light Table folder 
  4725.  
  4726. o Cannot get logon information from the original Light Table folder 
  4727.  
  4728. o Cannot put logon information to the newly created Light Table folder 
  4729.  
  4730. o Cannot get  EA schema from the original Light Table folder 
  4731.  
  4732. o Cannot put  EA schema to the newly created Light Table folder 
  4733.  
  4734. ACTION: Try one of the following: 
  4735.  
  4736. o If original Light Table folder was deleted, renamed, or moved, do not try 
  4737.   this request again, it will not work. 
  4738. o Otherwise, you can try this request again. 
  4739.  
  4740.  
  4741. ΓòÉΓòÉΓòÉ 279. Light Table folder conversion was completed with error ! ΓòÉΓòÉΓòÉ
  4742.  
  4743. ERROR: You have converted a Light Table folder but some LT Reference objects 
  4744. within the folder were not created. 
  4745.  
  4746. CAUSE: LTReference class DLL can't be loaded. 
  4747.  
  4748. ACTION: None required. 
  4749.  
  4750.  
  4751. ΓòÉΓòÉΓòÉ 280. Query Result contains no query information! ΓòÉΓòÉΓòÉ
  4752.  
  4753. ERROR: Your query result file (file type is LT Query Result) does not contain 
  4754. query result information. 
  4755.  
  4756. CAUSE: You did not perform the query via 'Run Query' from within the Query 
  4757. Sequencer. 
  4758.  
  4759. ACTION: Perform 'Run Query' from within the Query Sequencer folder where the 
  4760. query result file resides. 
  4761.  
  4762.  
  4763. ΓòÉΓòÉΓòÉ 281. No file extension for Light Table folder request.                            extension is rejected. ΓòÉΓòÉΓòÉ
  4764.  
  4765. ERROR: You are trying to attach a dBASE format file to a Light Table folder. 
  4766. But this dBASE format file, which is actually the query result file is not 
  4767. valid for it doesn't have file extension. 
  4768.  
  4769. CAUSE: Query result file doesn't have file extension. 
  4770.  
  4771. ACTION: Try these steps: 
  4772.  
  4773.  1. Exit Query Result Viewer and then 
  4774.  
  4775.     a. Change the title of the query result object to contain the character '.' 
  4776.  
  4777.     b. Double click on the query result object 
  4778.  
  4779.        This brings up the Query Result Viewer 
  4780.  
  4781.     c. Retry the request. 
  4782.  
  4783.  
  4784. ΓòÉΓòÉΓòÉ 282. Database open error. Changes can't be saved! ΓòÉΓòÉΓòÉ
  4785.  
  4786. ERROR: The program is trying to save changes to the database but the database 
  4787. could not be opened. (The database name and actual cause of the error is 
  4788. provided in the error window.) 
  4789.  
  4790. CAUSE: Possible causes are: 
  4791.  
  4792. o memory allocation error. 
  4793. o See the message itself. 
  4794.  
  4795. ACTION: Try one of the following: 
  4796.  
  4797. o Try to save it later. 
  4798. o Verify that the datbase still exist and retry the request. 
  4799. o Contact your Administrator. 
  4800.  
  4801.  
  4802. ΓòÉΓòÉΓòÉ 283. Cannot find original folder. No folder conversion performed! ΓòÉΓòÉΓòÉ
  4803.  
  4804. ERROR: You are trying to convert a query result file to a Light Table folder 
  4805. but the original Light Table folder (from which the query result was generated) 
  4806. could not be found. (The Light Table folder name is provided in the error 
  4807. window.) 
  4808.  
  4809. CAUSE: The original Light Table folder was deleted, renamed, or moved. 
  4810.  
  4811. ACTION: Rerun the query from within the Query Sequencer and then try the 
  4812. request again. 
  4813.  
  4814.  
  4815. ΓòÉΓòÉΓòÉ 284. Can't save the change due to memory allocation error. ΓòÉΓòÉΓòÉ
  4816.  
  4817. ERROR: Unable to delete record or change field - memory allocation. 
  4818.  
  4819. CAUSE: A memory allocation error. 
  4820.  
  4821. ACTION: Try one of the following: 
  4822.  
  4823. o Shutdown OS/2 and restart the system. 
  4824. o Try to do the change later. 
  4825. o If the symptom persists, contact your administrator. 
  4826.  
  4827.  
  4828. ΓòÉΓòÉΓòÉ 285. Cannot construct SQL statement - memory allocation.                 error. ΓòÉΓòÉΓòÉ
  4829.  
  4830. ERROR: memory allocation error. 
  4831.  
  4832. CAUSE: Memory is unavailable. 
  4833.  
  4834. ACTION: Try one of the following: 
  4835.  
  4836. o Try to save the changes to database at a later time. 
  4837. o Close unneeded applications or windows. 
  4838. o Shutdown OS/2 and restart the system. 
  4839.  
  4840.  
  4841. ΓòÉΓòÉΓòÉ 286. Input file cannot be processed. ΓòÉΓòÉΓòÉ
  4842.  
  4843. ERROR: You attempted to browse a file but the browse failed. (The file name is 
  4844. provided in the error window.) 
  4845.  
  4846. CAUSE: Possible causes are: 
  4847.  
  4848. o You misspelled the file name. 
  4849. o The file does not exist or is empty. 
  4850. o The format of the file is not supported by Browse. 
  4851. o The file is in use by another process. 
  4852. o A system input or output (I/O) error occurred while opening the file. 
  4853.  
  4854. ACTION: Try one of the following: 
  4855.  
  4856. o Correct the file name. 
  4857. o Make sure the file exists. 
  4858. o Get another copy of the file from another source. 
  4859. o Verify that the browser you started is the proper browser for the format of 
  4860.   the file. 
  4861. o Stop the other process that is using the file. 
  4862. o Try to browse the file again. 
  4863.  
  4864.  
  4865. ΓòÉΓòÉΓòÉ 287. No search string entered. ΓòÉΓòÉΓòÉ
  4866.  
  4867. ERROR: You attempted a search but the Search field was blank. 
  4868.  
  4869. CAUSE: Possible causes are: 
  4870.  
  4871. o You left the Search field blank. 
  4872. o You entered blank characters only. 
  4873.  
  4874. ACTION: Enter a search string. 
  4875.  
  4876.  
  4877. ΓòÉΓòÉΓòÉ 288. Search string was not found. ΓòÉΓòÉΓòÉ
  4878.  
  4879. ERROR: You entered a string that was not found. (The search began at the 
  4880. current line and searched to the end of the file. The search string is included 
  4881. in the error window.) 
  4882.  
  4883. CAUSE: Possible causes are: 
  4884.  
  4885. o The string you are looking for does not exist. 
  4886. o You misspelled the search string. 
  4887. o The current line is beyond the last occurrence of the string. 
  4888.  
  4889. ACTION: Try one of the following: 
  4890.  
  4891. o Enter a new string. 
  4892. o Correct the search string. 
  4893. o Move to the top of the file. 
  4894.  
  4895.  
  4896. ΓòÉΓòÉΓòÉ 289. Can't open the query file. ΓòÉΓòÉΓòÉ
  4897.  
  4898. ERROR: You are trying to open a Light Table Query file but it failed. (The 
  4899. query file name is provided in the error window.) 
  4900.  
  4901. CAUSE: Possible causes are: 
  4902.  
  4903. o You misspelled the file name. 
  4904. o The file doesn't exist. 
  4905. o The file exists but is not a LT Query type. 
  4906.  
  4907. ACTION: Try one of the following: 
  4908.  
  4909. o Correct the file name. 
  4910. o Create a LT Query file from a template. 
  4911.  
  4912.  
  4913. ΓòÉΓòÉΓòÉ 290. Memory allocation error. ΓòÉΓòÉΓòÉ
  4914.  
  4915. ERROR: A memory allocation error stopped the process. 
  4916.  
  4917. CAUSE: Memory is unavailable. 
  4918.  
  4919. ACTION: Try one of the following: 
  4920.  
  4921. o Close unneeded applications or windows. 
  4922. o Shutdown OS/2 and restart the system. 
  4923. o Try to edit the LT Query file again. 
  4924.  
  4925.  
  4926. ΓòÉΓòÉΓòÉ 291. No Light Table folder exists. ΓòÉΓòÉΓòÉ
  4927.  
  4928. ERROR: The program is trying to display the list of Light Table folders but no 
  4929. Light Table folder exists. 
  4930.  
  4931. CAUSE: The program cannot find a Light Table folder. 
  4932.  
  4933. ACTION: Create a Light Table folder and try again. 
  4934.  
  4935.  
  4936. ΓòÉΓòÉΓòÉ 292. Query is not LT Query type. ΓòÉΓòÉΓòÉ
  4937.  
  4938. ERROR: You are trying to open a Light Table query but the file type is not 
  4939. correct. (The query file name is provided in the error window.) 
  4940.  
  4941. CAUSE: Possible causes are: 
  4942.  
  4943. o You misspelled the file name. 
  4944. o The file is not a Light Table Query type. 
  4945.  
  4946. ACTION: Try one of the following: 
  4947.  
  4948. o Correct the file name. 
  4949. o Create a Light Table Query file from a template. 
  4950.  
  4951.  
  4952. ΓòÉΓòÉΓòÉ 293. Query file not found. ΓòÉΓòÉΓòÉ
  4953.  
  4954. ERROR: You were trying to open a Light Table Query file but it cannot be 
  4955. opened. (The query file name is provided in the error window.) 
  4956.  
  4957. CAUSE: Possible causes are: 
  4958.  
  4959. o You misspelled the file name. 
  4960. o The file does not exist. 
  4961.  
  4962. ACTION: Try one of the following: 
  4963.  
  4964. o Correct the file name. 
  4965. o Create a Light Table Query file from a template. 
  4966.  
  4967.  
  4968. ΓòÉΓòÉΓòÉ 294. SQL statement syntax error. ΓòÉΓòÉΓòÉ
  4969.  
  4970. ERROR: You are issuing an SQL statement with improper syntax. 
  4971.  
  4972. CAUSE: Possible causes are: 
  4973.  
  4974. o The SQL statement has improper syntax. 
  4975. o There are missing or misspelled SQL keywords (for example, SELECT or FROM). 
  4976.  
  4977. ACTION: Try one of the following: 
  4978.  
  4979. o Issue an acceptable SQL statement. 
  4980. o Correct keyword spelling. 
  4981.  
  4982.   For example: SELECT * FROM tablename. 
  4983.  
  4984.  
  4985. ΓòÉΓòÉΓòÉ 295. No Light Table folder selected. ΓòÉΓòÉΓòÉ
  4986.  
  4987. ERROR: You have not selected a Light Table folder name. 
  4988.  
  4989. CAUSE: The program needs a Light Table folder name to continue. 
  4990.  
  4991. ACTION: Select a Light Table folder name and try again. 
  4992.  
  4993.  
  4994. ΓòÉΓòÉΓòÉ 296. Enter logon information. ΓòÉΓòÉΓòÉ
  4995.  
  4996. ERROR: You did not provide the required logon information for accessing the 
  4997. database. 
  4998.  
  4999. CAUSE: Possible causes are: 
  5000.  
  5001. o For OS/2 Database Manager: the userid, password, or database name is missing. 
  5002.  
  5003. o For Oracle: the userid, password, or server name is missing. 
  5004.  
  5005. ACTION: Enter the logon information again. 
  5006.  
  5007.  
  5008. ΓòÉΓòÉΓòÉ 297. Invalid character ' ' in Join Field Previous. ΓòÉΓòÉΓòÉ
  5009.  
  5010. ERROR: You entered an invalid character ' ' in the Join Field Previous. 
  5011.  
  5012. CAUSE: Blank or control characters are not allowed. 
  5013.  
  5014. ACTION: Correct your input for Join Field Previous. 
  5015.  
  5016.  
  5017. ΓòÉΓòÉΓòÉ 298. Invalid character ' ' in Join Field Next. ΓòÉΓòÉΓòÉ
  5018.  
  5019. ERROR: You entered an invalid character ' ' in the Join Field Next. 
  5020.  
  5021. CAUSE: Blank or control character are not allowed. 
  5022.  
  5023. ACTION: Correct your input for Join Field Next. 
  5024.  
  5025.  
  5026. ΓòÉΓòÉΓòÉ 299. Invalid character in Userid. ΓòÉΓòÉΓòÉ
  5027.  
  5028. ERROR: You entered an invalid character ' ' in the Userid. 
  5029.  
  5030. CAUSE: Blank or control character are not allowed. 
  5031.  
  5032. ACTION: Correct the Userid. 
  5033.  
  5034.  
  5035. ΓòÉΓòÉΓòÉ 300. Invalid character in Password. ΓòÉΓòÉΓòÉ
  5036.  
  5037. ERROR: You entered an invalid character ' ' in the Password. 
  5038.  
  5039. CAUSE: Blank or control character are not allowed. 
  5040.  
  5041. ACTION: Correct the password. 
  5042.  
  5043.  
  5044. ΓòÉΓòÉΓòÉ 301. Invalid character in database name. ΓòÉΓòÉΓòÉ
  5045.  
  5046. ERROR: You entered an invalid character ' ' in the database name. 
  5047.  
  5048. CAUSE: Blank or control character are not allowed. 
  5049.  
  5050. ACTION: Correct the database name. 
  5051.  
  5052.  
  5053. ΓòÉΓòÉΓòÉ 302. Invalid character in Server. ΓòÉΓòÉΓòÉ
  5054.  
  5055. ERROR: You entered an invalid character ' ' in the server name. 
  5056.  
  5057. CAUSE: Blank or control character are not allowed. 
  5058.  
  5059. ACTION: Correct the server name. 
  5060.  
  5061.  
  5062. ΓòÉΓòÉΓòÉ 303. Enter SQL statements. ΓòÉΓòÉΓòÉ
  5063.  
  5064. ERROR: You did not provide the SQL statements. 
  5065.  
  5066. CAUSE: SQL statements are not there. 
  5067.  
  5068. ACTION: Enter the SQL statements. 
  5069.  
  5070.  
  5071. ΓòÉΓòÉΓòÉ 304. Invalid character in Tablename. ΓòÉΓòÉΓòÉ
  5072.  
  5073. ERROR: You entered an invalid character ' ' in the table name. 
  5074.  
  5075. CAUSE: Blank or control character are not allowed. 
  5076.  
  5077. ACTION: Correct the table name. 
  5078.  
  5079.  
  5080. ΓòÉΓòÉΓòÉ 305. Light Table folder has no schema. ΓòÉΓòÉΓòÉ
  5081.  
  5082. ERROR: You have queried a Light Table folder that has no defined schema 
  5083. definition. (The Light Table folder name is provided in the error window.) 
  5084.  
  5085. CAUSE: The folder must have a schema definition. 
  5086.  
  5087. ACTION: Open the Light Table folder schema setting notebooks page and define 
  5088. new schema for the Light Table folder. 
  5089.  
  5090.  
  5091. ΓòÉΓòÉΓòÉ 306. Out of memory - cannot allocate more memory. ΓòÉΓòÉΓòÉ
  5092.  
  5093. ERROR: You have no more memory available. 
  5094.  
  5095. CAUSE: Memory resources are being used. 
  5096.  
  5097. ACTION: Try one of the following: 
  5098.  
  5099. o Verify that your system meets the minimum requirements for Workplace/2. 
  5100.  
  5101. o Close unneeded applications or windows. 
  5102.  
  5103. o Archive any large or infrequently used files. 
  5104.  
  5105. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  5106.  
  5107. o Shutdown OS/2 and restart the system. 
  5108.  
  5109. o If the symptom persists, contact your administrator. 
  5110.  
  5111.  
  5112. ΓòÉΓòÉΓòÉ 307. Cannot open database ΓòÉΓòÉΓòÉ
  5113.  
  5114. ERROR: You are trying to open a database but an error prevented it. (The 
  5115. database and table name is provided in the error window.) 
  5116.  
  5117. CAUSE: Possible causes are: 
  5118.  
  5119. o A misspelled database or table name. 
  5120. o Database table or file is already opened. 
  5121. o Incorrect logon userid. 
  5122. o Incorrect logon password. 
  5123. o Incorrect server ID. 
  5124. o A memory allocation error. 
  5125.  
  5126. ACTION: Try one of the following: 
  5127.  
  5128. o Close any other open sessions of the same database table. 
  5129.  
  5130. o Correct database or table name, logon userid/password, or server ID. 
  5131.  
  5132. o Shutdown OS/2 and restart the system. 
  5133.  
  5134. o If the symptom persists, call your service representative. 
  5135.  
  5136.  
  5137. ΓòÉΓòÉΓòÉ 308. Error caused by database query ΓòÉΓòÉΓòÉ
  5138.  
  5139. ERROR: You are trying to do a database query but an error has stopped it. (The 
  5140. query object name is provided in the error window.) 
  5141.  
  5142. CAUSE: An incorrect SELECT query statement. 
  5143.  
  5144. ACTION: Modify your SELECT query statement. 
  5145.  
  5146.  
  5147. ΓòÉΓòÉΓòÉ 309. Cannot get database schema information. ΓòÉΓòÉΓòÉ
  5148.  
  5149. ERROR: You are running a query but the program cannot get database schema 
  5150. information for the query. (The query object name is provided in the error 
  5151. window.) 
  5152.  
  5153. CAUSE: Possible causes are: 
  5154.  
  5155. o Database schema has an incorrect data type. 
  5156. o A memory allocation error. 
  5157.  
  5158. ACTION: Try one of the following: 
  5159.  
  5160. o Verify that your system meets the minimum requirements for Workplace/2. 
  5161.  
  5162. o Close unneeded applications or windows. 
  5163.  
  5164. o Archive any large or infrequently used files. 
  5165.  
  5166. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  5167.  
  5168. o Shutdown OS/2 and restart the system. 
  5169.  
  5170. o Rerun the query. 
  5171.  
  5172. o If the symptom persists, call your service representative. 
  5173.  
  5174.  
  5175. ΓòÉΓòÉΓòÉ 310. Cannot create a new database table ΓòÉΓòÉΓòÉ
  5176.  
  5177. ERROR: Your database table could not be created due to an error. (The name of 
  5178. the new database table is provided in the error window.) 
  5179.  
  5180. CAUSE: Possible causes are: 
  5181.  
  5182. o There is not enough disk space. 
  5183. o You misspelled the table name. 
  5184. o There already is a database file by that name. 
  5185. o Unacceptable database file name or schema 
  5186. o Incorrect logon information 
  5187.  
  5188. ACTION: Try one of the following: 
  5189.  
  5190. o Verify that your system meets the minimum requirements for Workplace. 
  5191.  
  5192. o Archive any large or infrequently used files in the C: drive (root 
  5193.   directory). 
  5194.  
  5195. o Erase or archive infrequently used files in your database. 
  5196.  
  5197. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  5198.  
  5199. o Shutdown OS/2 and restart the system. 
  5200.  
  5201. o Rerun the query. 
  5202.  
  5203. o If the query still fails, call your service representative. 
  5204.  
  5205.  
  5206. ΓòÉΓòÉΓòÉ 311. Error occurred while getting database records. ΓòÉΓòÉΓòÉ
  5207.  
  5208. ERROR: You are trying to get a record from an SQL-like database but an error 
  5209. stopped the process. (The query filename is provided in the error window.) 
  5210.  
  5211. CAUSE: Possible causes are: 
  5212.  
  5213. o The incorrect record was found. 
  5214. o No record was found. 
  5215. o A system error occurred. 
  5216.  
  5217. ACTION: Try one of the following: 
  5218.  
  5219. o Make sure that the database file or table you are querying contains proper 
  5220.   records. 
  5221. o Try again later. 
  5222. o Shutdown OS/2 and restart the system. 
  5223. o If the symptom persists, call your service representative. 
  5224.  
  5225.  
  5226. ΓòÉΓòÉΓòÉ 312. Error occurred while putting database records. ΓòÉΓòÉΓòÉ
  5227.  
  5228. ERROR: You were trying to put a record into an SQL-like database but an error 
  5229. stopped the process. (The table name is provided in the error window.) 
  5230.  
  5231. CAUSE: Possible causes are: 
  5232.  
  5233. o The database record does not match the database. 
  5234. o A memory allocation error. 
  5235. o A system error. 
  5236.  
  5237. ACTION: Try one of the following: 
  5238.  
  5239. o Correct the record. 
  5240.  
  5241. o Verify that your system meets the minimum requirements for Workplace/2. 
  5242.  
  5243. o Close unneeded applications or windows. 
  5244.  
  5245. o Archive any large or infrequently used files. 
  5246.  
  5247. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  5248.  
  5249. o Shutdown OS/2 and restart the system. 
  5250.  
  5251. o Rerun the query. 
  5252.  
  5253. o If the symptom persists, call your service representative. 
  5254.  
  5255.  
  5256. ΓòÉΓòÉΓòÉ 313. Cannot put extended attribute information in query result. ΓòÉΓòÉΓòÉ
  5257.  
  5258. ERROR: Failed to put extended attribute information in the query result object. 
  5259.  
  5260. CAUSE: Possible causes are: 
  5261.  
  5262. o Extended Attribute query information is not in proper format. 
  5263. o A memory allocation error. 
  5264. o A sharing violation. 
  5265.  
  5266. ACTION: Try one of the following: 
  5267.  
  5268. o Shutdown OS/2 and restart the system. 
  5269. o Rerun the query. 
  5270. o If the symptom persists, call your service representative. 
  5271.  
  5272.  
  5273. ΓòÉΓòÉΓòÉ 314. Cannot get extended attributes information. ΓòÉΓòÉΓòÉ
  5274.  
  5275. ERROR: The program is trying to get extended attributes information but an 
  5276. error stopped the process. (The query object name s provided in the error 
  5277. window.) 
  5278.  
  5279. CAUSE: Possible causes are: 
  5280.  
  5281. o No extended attributes information was found in the file. 
  5282. o A memory allocation error 
  5283. o A sharing violation. 
  5284.  
  5285. ACTION: Try one of the following: 
  5286.  
  5287. o Shutdown OS/2 and restart the system. 
  5288. o Rerun the query. 
  5289. o If the symptom persists, call your service representative. 
  5290.  
  5291.  
  5292. ΓòÉΓòÉΓòÉ 315. Cannot get extended attributes logon information. ΓòÉΓòÉΓòÉ
  5293.  
  5294. ERROR: The program is trying to get extended attributes logon informaton but an 
  5295. error stopped the process. (The query object name is provided in the error 
  5296. window.) 
  5297.  
  5298. CAUSE: Possible causes are: 
  5299.  
  5300. o A memory allocation error 
  5301. o A sharing violation. 
  5302.  
  5303. ACTION: Try one of the following: 
  5304.  
  5305. o Shutdown OS/2 and restart the system. 
  5306.  
  5307. o Rerun the query. 
  5308.  
  5309. o If the symptom persists, call your service representative. 
  5310.  
  5311.  
  5312. ΓòÉΓòÉΓòÉ 316. Cannot get folder schema information. ΓòÉΓòÉΓòÉ
  5313.  
  5314. ERROR: The program is trying to get folder schema information but an error 
  5315. stopped the process. 
  5316.  
  5317. CAUSE: Possible causes are: 
  5318.  
  5319. o The extended attributes do not exist. 
  5320. o A memory allocation error. 
  5321.  
  5322. ACTION: Try one of the following: 
  5323.  
  5324. o Define new schema definitions for the Light Table folder and try again. 
  5325. o If the symptom persists, call your service representative. 
  5326.  
  5327.  
  5328. ΓòÉΓòÉΓòÉ 317. Cannot populate folder. ΓòÉΓòÉΓòÉ
  5329.  
  5330. ERROR: The program trying to populate the Light Table folder, but an error 
  5331. stopped the process. (The folder name is provided in the error window.) 
  5332.  
  5333. CAUSE: Possible causes are: 
  5334.  
  5335. o Could not get folder schema information. 
  5336. o The database key field has no value. 
  5337. o A memory allocation error. 
  5338.  
  5339. ACTION: Try one of the following: 
  5340.  
  5341. o Define database value for the key field in Light Table folder details view 
  5342.   and try again. 
  5343. o Shutdown OS/2 and restart the system. 
  5344. o If the symptom persists, call your service representative. 
  5345.  
  5346.  
  5347. ΓòÉΓòÉΓòÉ 318. DOS read or write operation failed. ΓòÉΓòÉΓòÉ
  5348.  
  5349. ERROR: You are trying to read or write a file but an error stopped the process. 
  5350.  
  5351. CAUSE: Possible causes are: 
  5352.  
  5353. o You do not have read access to the file. 
  5354. o The file has read-only protection status. 
  5355. o A system error occurred. 
  5356.  
  5357. ACTION: Try one of the following: 
  5358.  
  5359. o Shutdown OS/2 and restart the system. 
  5360.  
  5361. o If the symptom persists, contact your administrator. 
  5362.  
  5363.  
  5364. ΓòÉΓòÉΓòÉ 319. Failed to start ltqrv.exe ΓòÉΓòÉΓòÉ
  5365.  
  5366. ERROR: You ran a query but the query result viewer would not start. 
  5367.  
  5368. CAUSE: Possible causes are: 
  5369.  
  5370. o Program ltqrv.exe does not exist. 
  5371. o ltqrv.exe is not in the PATH. 
  5372. o A memory allocation error occurred. 
  5373. o The stack size is too small. 
  5374.  
  5375. ACTION: Try one of the following: 
  5376.  
  5377. o Double click the query result object to view the result. 
  5378.  
  5379. o Verify that the ltqrv.exe is in a directory included in your current PATH 
  5380.   statement. 
  5381.  
  5382. o Make sure that program ltqrv.exe exists. 
  5383.  
  5384. o Shutdown OS/2, restart the system, and rerun the query. 
  5385.  
  5386. o If the symptom persists, call your service representative. 
  5387.  
  5388.  
  5389. ΓòÉΓòÉΓòÉ 320. Error occurred doing a Query result column-join. ΓòÉΓòÉΓòÉ
  5390.  
  5391. ERROR: You are trying to do a column join but an error stopped the process. 
  5392.  
  5393. CAUSE: Possible causes are: 
  5394.  
  5395. o Query on the database failed. 
  5396. o Get database schema failed. 
  5397. o Create database table or file failed. 
  5398. o Get database record failed. 
  5399. o Put database record failed. 
  5400.  
  5401. ACTION: Contact your service representative. 
  5402.  
  5403.  
  5404. ΓòÉΓòÉΓòÉ 321. Light table folder has no multimedia objects ΓòÉΓòÉΓòÉ
  5405.  
  5406. ERROR: The light table folder to be queried contains no multimedia objects. 
  5407. (The folder name is provided in the error window.) 
  5408.  
  5409. CAUSE: Possible causes are: 
  5410.  
  5411. o Light Table folder only contains non-multimedia objects. 
  5412.  
  5413. o Light Table folder is empty. 
  5414.  
  5415. ACTION: Drag and drop multimedia objects to the light table folder. 
  5416.  
  5417.  
  5418. ΓòÉΓòÉΓòÉ 322. Incorrect SQL like query statement ΓòÉΓòÉΓòÉ
  5419.  
  5420. ERROR: The query has incorrect SELECT query statement. 
  5421.  
  5422. CAUSE: Possible causes are: 
  5423.  
  5424. o The syntax of your SQL like query statement is incorrect. 
  5425.  
  5426. o Your query statement is missing "SELECT" or "FROM" keywords 
  5427.  
  5428. ACTION: Correct your SELECT query statement. 
  5429.  
  5430.  
  5431. ΓòÉΓòÉΓòÉ 323. Join operation exceeds system capacity. ΓòÉΓòÉΓòÉ
  5432.  
  5433. ERROR: The program is trying to join a sequence of query results, but there are 
  5434. too many of them. 
  5435.  
  5436. CAUSE: The program joins a sequence of query results when it encounters a Query 
  5437. Result object or a Visual Query object in the query sequence. The number of 
  5438. query results to be joined has caused a buffer to fill up. 
  5439.  
  5440. ACTION: Reduce the number of query results to be joined by inserting an 
  5441. intermediate Query Result object in the query sequencer. 
  5442.  
  5443.  
  5444. ΓòÉΓòÉΓòÉ 324. Drag/Drop error: Cannot render data for dropped object. ΓòÉΓòÉΓòÉ
  5445.  
  5446. ERROR: You are trying to drag an object using the Query Result Viewer but an 
  5447. error stopped the process. 
  5448.  
  5449. CAUSE: Shared memory is not available. 
  5450.  
  5451. ACTION: Try one of the following: 
  5452.  
  5453. o Try the same drag and drop again. 
  5454.  
  5455. o Shutdown OS/2 and restart the system, then try the same drag and drop again. 
  5456.  
  5457. o If the symptom persists, call your administrator. 
  5458.  
  5459.  
  5460. ΓòÉΓòÉΓòÉ 325. Drag/Drop error: Cannot end data transfer. ΓòÉΓòÉΓòÉ
  5461.  
  5462. ERROR: You are trying to drag an object using the Query Result Viewer but an 
  5463. error stopped the process. 
  5464.  
  5465. CAUSE: Shared memory is not available. 
  5466.  
  5467. ACTION: Try one of the following: 
  5468.  
  5469. o Try the same drag and drop again. 
  5470. o Shutdown OS/2 and restart the system, then try the same drag and drop again. 
  5471. o If the symptom persists, call your administrator. 
  5472.  
  5473.  
  5474. ΓòÉΓòÉΓòÉ 326. Drag/Drop error: Cannot find the class. ΓòÉΓòÉΓòÉ
  5475.  
  5476. ERROR: You are trying to drag an object using the Query Result Viewer but the 
  5477. class cannot be found. (The class it was trying to find is provided in the 
  5478. error window.) 
  5479.  
  5480. CAUSE: The object class is not loaded or initialized. 
  5481.  
  5482. ACTION: Try one of the following: 
  5483.  
  5484. o Try the same drag and drop again. 
  5485. o Check the class list for WPDataFile and LT Reference 
  5486. o Shutdown OS/2 and restart the system. 
  5487.  
  5488.  
  5489. ΓòÉΓòÉΓòÉ 327. Drag/Drop error: Cannot create the dropped object. ΓòÉΓòÉΓòÉ
  5490.  
  5491. ERROR: You are trying to drag an object using the Query Result Viewer but an 
  5492. error stopped the process. 
  5493.  
  5494. CAUSE: Object class is not loaded or initialized. 
  5495.  
  5496. ACTION: Try one of the following: 
  5497.  
  5498. o Try the same drag and drop again. 
  5499. o Check the class list for WPDataFile and LT Reference 
  5500. o Shutdown OS/2 and restart the system. 
  5501. o Try the same drag and drop again. 
  5502.  
  5503.  
  5504. ΓòÉΓòÉΓòÉ 328. Drag/Drop error: Cannot get the named shared memory. ΓòÉΓòÉΓòÉ
  5505.  
  5506. ERROR: You are trying to drag an object using the Query Result Viewer but an 
  5507. error stopped the process. 
  5508.  
  5509. CAUSE: Shared memory is not available. 
  5510.  
  5511. ACTION: Try one of the following: 
  5512.  
  5513. o Try the same drag and drop again. 
  5514. o Close and restart the Query Result Viewer. 
  5515. o Shutdown OS/2 and restart the system, then try the same drag and drop again. 
  5516. o If the symptom persists, call your administrator. 
  5517.  
  5518.  
  5519. ΓòÉΓòÉΓòÉ 329. Drag/Drop error: Cannot free the named shared memory. ΓòÉΓòÉΓòÉ
  5520.  
  5521. ERROR: You are trying to drag and drop an object but an error stopped the 
  5522. process. 
  5523.  
  5524. CAUSE: Shared memory is not available. 
  5525.  
  5526. ACTION: Try one of the following: 
  5527.  
  5528. o Try the same drag and drop again. 
  5529. o Shutdown OS/2 and restart the system, then try the same drag and drop again. 
  5530. o If the symptom persists, call your administrator. 
  5531.  
  5532.  
  5533. ΓòÉΓòÉΓòÉ 330. Drag/Drop error: Cannot get the real name of the object. ΓòÉΓòÉΓòÉ
  5534.  
  5535. ERROR: You are trying to drag and drop an object but an error stopped the 
  5536. process. 
  5537.  
  5538. CAUSE: Possible causes are: 
  5539.  
  5540. o The object is not available. 
  5541. o The directory where the object is located may be locked. 
  5542.  
  5543. ACTION: Try one of the following: 
  5544.  
  5545. o Try the same Drag/Drop again. 
  5546. o Find out if the directory is locked or busy. 
  5547.  
  5548.  
  5549. ΓòÉΓòÉΓòÉ 331. Drag/Drop error: Cannot allocate memory. ΓòÉΓòÉΓòÉ
  5550.  
  5551. ERROR: You are trying to drag and drop an object but a memory error stopped the 
  5552. process. 
  5553.  
  5554. CAUSE: No Memory is available. 
  5555.  
  5556. ACTION: Try one of the following: 
  5557.  
  5558. o Try the drag and drop again. 
  5559.  
  5560. o Close unneeded applications or windows. 
  5561.  
  5562. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  5563.  
  5564. o Shutdown OS/2 and restart the system. 
  5565.  
  5566. o If the symptom persists, call your administrator. 
  5567.  
  5568.  
  5569. ΓòÉΓòÉΓòÉ 332. Drag/Drop error: Cannot allocate memory. ΓòÉΓòÉΓòÉ
  5570.  
  5571. ERROR: You are trying to drag and drop an object but a memory error stopped the 
  5572. process. 
  5573.  
  5574. CAUSE: No memory is available. 
  5575.  
  5576. ACTION: Try one of the following: 
  5577.  
  5578. o Try the drag and drop again. 
  5579. o Close unneeded applications or windows. 
  5580. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  5581. o Shutdown OS/2 and restart the system. 
  5582. o If the symptom persists, call your administrator. 
  5583.  
  5584.  
  5585. ΓòÉΓòÉΓòÉ 333. Error getting folder schema. ΓòÉΓòÉΓòÉ
  5586.  
  5587. ERROR: You are trying to open the details view for the folder but the schema 
  5588. defined for this folder is inaccessible. 
  5589.  
  5590. CAUSE: Possible causes are: 
  5591.  
  5592. o The attached database may not be available. 
  5593. o The schema may not be set up correctly. 
  5594.  
  5595. ACTION: Try one of the following: 
  5596.  
  5597. o Check the schema definition via the notebook page. 
  5598. o Check for availability of the database. 
  5599.  
  5600.  
  5601. ΓòÉΓòÉΓòÉ 334. Error on record creation. ΓòÉΓòÉΓòÉ
  5602.  
  5603. ERROR: You are trying to create a new record in the database but the program 
  5604. cannot create it. (The database access error number is provided in the error 
  5605. window.) 
  5606.  
  5607. CAUSE: Possible causes are: 
  5608.  
  5609. o The attached database may not be available. 
  5610. o You do not have write access to the database. 
  5611.  
  5612. ACTION: Try one of the following: 
  5613.  
  5614. o Check to see if the database is available. 
  5615. o Check the access permissions of the database. 
  5616.  
  5617.  
  5618. ΓòÉΓòÉΓòÉ 335. Error on record update. ΓòÉΓòÉΓòÉ
  5619.  
  5620. ERROR: You are trying to update a record in the database but an error stopped 
  5621. the process. (The database access error number is provided in the error 
  5622. window.) 
  5623.  
  5624. CAUSE: The database is unavailable for write access. 
  5625.  
  5626. ACTION: Check the availability and access permissions of database. 
  5627.  
  5628.  
  5629. ΓòÉΓòÉΓòÉ 336. Error on field edit format. ΓòÉΓòÉΓòÉ
  5630.  
  5631. ERROR: The data you entered in the record was not accepted. (The database 
  5632. access error number is provided in the error window.) 
  5633.  
  5634. CAUSE: The wrong format was entered for the schema field type. 
  5635.  
  5636. ACTION: Try one of the following: 
  5637.  
  5638. o Re-enter data in the correct format. 
  5639. o Check schema field type. 
  5640.  
  5641.  
  5642. ΓòÉΓòÉΓòÉ 337. Unable to allocate memory. ΓòÉΓòÉΓòÉ
  5643.  
  5644. ERROR: You need more memory to complete the operation but the system is unable 
  5645. to allocate any memory. 
  5646.  
  5647. CAUSE: Memory is unavailable. 
  5648.  
  5649. ACTION: Try one of the following: 
  5650.  
  5651. o Verify that your system meets the minimum requirements for Workplace/2 as 
  5652.   specified in the Users Guide. 
  5653. o Close unneeded applications or windows to free up memory resources. 
  5654. o Shutdown OS/2 and restart the system. 
  5655.  
  5656.  
  5657. ΓòÉΓòÉΓòÉ 338. Unable to load dialog for creating LT Reference. ΓòÉΓòÉΓòÉ
  5658.  
  5659. ERROR: You are trying to use Create LT Reference but the program is unable to 
  5660. create a dialog window. 
  5661.  
  5662. CAUSE: The program cannot create dialog window. 
  5663.  
  5664. ACTION: Try one of the following: 
  5665.  
  5666. o Shutdown OS/2 and restart the system. 
  5667. o If the symptom persists, call your service representative. 
  5668.  
  5669.  
  5670. ΓòÉΓòÉΓòÉ 339. Unable to insert 'Media Browser' menu item into the data ΓòÉΓòÉΓòÉ
  5671.  
  5672. file's open submenu. 
  5673.  
  5674. ERROR: You are trying to display the data file's open submenu but an error 
  5675. stopped the process of adding 'Media Browser' to the open submenu. 
  5676.  
  5677. CAUSE: The program cannot insert new menu item to the open submenu. 
  5678.  
  5679. ACTION: Try one of the following: 
  5680.  
  5681. o Shutdown OS/2 and restart the system. 
  5682. o If the symptom persists, call your service representative. 
  5683.  
  5684.  
  5685. ΓòÉΓòÉΓòÉ 340. Unable to insert 'Create LT Reference' into context menu.  . ΓòÉΓòÉΓòÉ
  5686.  
  5687. ERROR: You are trying to display the data file's context menu but an error 
  5688. stopped the process of adding "Create LTReference" to the context menu. 
  5689.  
  5690. CAUSE: The program cannot insert new menu item to the context menu. 
  5691.  
  5692. ACTION: Try one of the following: 
  5693.  
  5694. o Shutdown OS/2 and restart the system. 
  5695. o If the symptom persists, call your service representative. 
  5696.  
  5697.  
  5698. ΓòÉΓòÉΓòÉ 341. Light Table folder not selected. ΓòÉΓòÉΓòÉ
  5699.  
  5700. ERROR: You have not selected a Light Table folder as the target folder for this 
  5701. operation. 
  5702.  
  5703. CAUSE: The program requires a folder as a target. 
  5704.  
  5705. ACTION: Try one of the following: 
  5706.  
  5707. o Select a Light Table folder for this operation 
  5708. o Cancel the operation 
  5709.  
  5710.  
  5711. ΓòÉΓòÉΓòÉ 342. Error initializing dialog for creating LT Reference. ΓòÉΓòÉΓòÉ
  5712.  
  5713. ERROR: You are trying to create an LT Reference but an error stopped a window 
  5714. from being opened. 
  5715.  
  5716. CAUSE: The program cannot open a window. 
  5717.  
  5718. ACTION: Try one of the following: 
  5719.  
  5720. o Shutdown OS/2 and restart the system. 
  5721. o If the symptom persists, call your service representative. 
  5722.  
  5723.  
  5724. ΓòÉΓòÉΓòÉ 343. Unable to register window class. ΓòÉΓòÉΓòÉ
  5725.  
  5726. ERROR: You are using the Media Browser but the program could not register 
  5727. window class for Media Browser. 
  5728.  
  5729. CAUSE: The program could not register the window class. 
  5730.  
  5731. ACTION: Try one of the following: 
  5732.  
  5733. o Shutdown OS/2 and restart the system. 
  5734. o If the symptom persists, call your service representative. 
  5735.  
  5736.  
  5737. ΓòÉΓòÉΓòÉ 344. Unable to create standard window. ΓòÉΓòÉΓòÉ
  5738.  
  5739. ERROR: You are using the Media Browser but the program cannot create a standard 
  5740. window. 
  5741.  
  5742. CAUSE: The program cannot create a window for the Media Browser. 
  5743.  
  5744. ACTION: Try one of the following: 
  5745.  
  5746. o Shutdown OS/2 and restart the system. 
  5747. o If the symptom persists, call your service representative. 
  5748.  
  5749.  
  5750. ΓòÉΓòÉΓòÉ 345. Unable to create the LT Reference object. ΓòÉΓòÉΓòÉ
  5751.  
  5752. ERROR: You are trying to create an LT Reference object but an error stopped the 
  5753. process. 
  5754.  
  5755. CAUSE: The program cannot create the LT Reference object. 
  5756.  
  5757. ACTION: Try one of the following: 
  5758.  
  5759. o Shutdown OS/2 and restart the system. 
  5760. o If the symptom persists, call your service representative. 
  5761.  
  5762.  
  5763. ΓòÉΓòÉΓòÉ 346. Unable to process default thumbnail. ΓòÉΓòÉΓòÉ
  5764.  
  5765. ERROR: The thumbnail image cannot be processed. 
  5766.  
  5767. CAUSE: Possible causes are: 
  5768.  
  5769. o The default thumbnail does not exist in the UMPATH. 
  5770. o The default thumbnail file is corrupted. 
  5771.  
  5772. ACTION: Try one of the following: 
  5773.  
  5774. o Copy the default thumbnail from product diskette to UMPATH, then try again. 
  5775. o If the symptom persists, call your service representative. 
  5776.  
  5777.  
  5778. ΓòÉΓòÉΓòÉ 347. Unable to find the class. ΓòÉΓòÉΓòÉ
  5779.  
  5780. ERROR: You are trying to create an LT Reference object but the object class 
  5781. cannot be found. (The class name is provided in the error window.) 
  5782.  
  5783. CAUSE: The object class is not loaded or initialized. 
  5784.  
  5785. ACTION: Try one of the following: 
  5786.  
  5787. o Shutdown OS/2 and restart the system. 
  5788. o If the symptom persists, call your service representative. 
  5789.  
  5790.  
  5791. ΓòÉΓòÉΓòÉ 348. Unable to get the real name of the object. ΓòÉΓòÉΓòÉ
  5792.  
  5793. ERROR: You are trying to perform operations on the object but the object could 
  5794. not be found. 
  5795.  
  5796. CAUSE: Possible causes are: 
  5797.  
  5798. o The object is not loaded or is unavailable. 
  5799. o The directory (where the object is located) is locked. 
  5800.  
  5801. ACTION: Try one of the following: 
  5802.  
  5803. o Try the same operation again later. 
  5804. o Check if the directory is in use or locked. 
  5805.  
  5806.  
  5807. ΓòÉΓòÉΓòÉ 349. Remove Existing Schema stored in Extended Attributes? ΓòÉΓòÉΓòÉ
  5808.  
  5809. ERROR: You are trying to remove existing schema stored in extended attributes. 
  5810.  
  5811. CAUSE: The program verifies that you really want to discard the existing 
  5812. schema. 
  5813.  
  5814. ACTION: Try one of the following: 
  5815.  
  5816. o Press Ok to discard the existing schema. 
  5817. o Press Cancel to keep the existing schema. 
  5818.  
  5819.  
  5820. ΓòÉΓòÉΓòÉ 350. Error: Could not get schema. Press Undo. ΓòÉΓòÉΓòÉ
  5821.  
  5822. ERROR: You are trying to access the folder schema information but the program 
  5823. could not get the original schema from the folder. 
  5824.  
  5825. CAUSE: Possible causes are: 
  5826.  
  5827. o The folder was deleted, renamed or moved. 
  5828. o A memory allocation error 
  5829.  
  5830. ACTION: Try one of the following: 
  5831.  
  5832. o If the folder was renamed or moved, close the settings notebook and try 
  5833.   again. 
  5834. o If the folder was deleted, do not try again. 
  5835. o Shutdown OS/2 and restart the system. 
  5836. o Close any applications or windows not in use. 
  5837. o Archive any large or infrequently used files. 
  5838. o Delete any unnecessary files on the disk 
  5839. o Shutdown OS/2 and restart the system. 
  5840. o If the symptom persists, call your service representative. 
  5841.  
  5842.  
  5843. ΓòÉΓòÉΓòÉ 351. Remove Existing Schema stored in Database? ΓòÉΓòÉΓòÉ
  5844.  
  5845. ERROR: You are trying to remove existing schema stored in the Database. 
  5846.  
  5847. CAUSE: The program verifies that you really want to change the Database type. 
  5848.  
  5849. ACTION: Try one of the following: 
  5850.  
  5851. o Press Ok to discard the existing schema. 
  5852. o Press Cancel to keep the existing schema. 
  5853.  
  5854.  
  5855. ΓòÉΓòÉΓòÉ 352. Error: Could not open the schema in extended attributes. ΓòÉΓòÉΓòÉ
  5856.  
  5857. ERROR: You are trying to access the folder schema information but the program 
  5858. could not open the schema in the extended attributes. 
  5859.  
  5860. CAUSE: Possible causes are: 
  5861.  
  5862. o The folder has been renamed. 
  5863. o The schema in extended attributes is already open. 
  5864. o A memory allocation error. 
  5865.  
  5866. ACTION: Try one of the following: 
  5867.  
  5868. o Close then reopen the settings notebook and try again. 
  5869. o Close other windows associated with this schema. 
  5870. o Shutdown OS/2 and restart the system. 
  5871. o If the symptom persists, call your service representative. 
  5872.  
  5873.  
  5874. ΓòÉΓòÉΓòÉ 353. Error: Could not store schema in extended attributes. ΓòÉΓòÉΓòÉ
  5875.  
  5876. ERROR: The schema could not be stored in the extended attributes. 
  5877.  
  5878. CAUSE: Possible causes are: 
  5879.  
  5880. o The schema is already open. 
  5881. o A memory allocation error. 
  5882.  
  5883. ACTION: Try one of the following: 
  5884.  
  5885. o Close other windows associated with this schema. 
  5886. o Shutdown OS/2 and restart the system. 
  5887. o If the symptom persists, call your service representative. 
  5888.  
  5889.  
  5890. ΓòÉΓòÉΓòÉ 354. Error: Could not close schema stored in extended attributes. ΓòÉΓòÉΓòÉ
  5891.  
  5892. ERROR: The schema could not be closed in the extended attributes. 
  5893.  
  5894. CAUSE: Possible causes are: 
  5895.  
  5896. o Another instance of this schema is in use 
  5897. o A memory allocation error 
  5898.  
  5899. ACTION: Try one of the following: 
  5900.  
  5901. o Close other windows associated with this schema. 
  5902. o Shutdown OS/2 and restart the system. 
  5903. o If the symptom persists, call your service representative. 
  5904.  
  5905.  
  5906. ΓòÉΓòÉΓòÉ 355. Error: Logon Information failed. ΓòÉΓòÉΓòÉ
  5907.  
  5908. ERROR: The logon information could not be accessed. 
  5909.  
  5910. CAUSE: Possible causes are: 
  5911.  
  5912. o Another instance of this schema is in use 
  5913. o A memory allocation error 
  5914.  
  5915. ACTION: Try one of the following: 
  5916.  
  5917. o Close other windows associated with this schema. 
  5918. o Shutdown OS/2 and restart the system. 
  5919. o If the symptom persists, call your service representative. 
  5920.  
  5921.  
  5922. ΓòÉΓòÉΓòÉ 356. Error: Could not open database. ΓòÉΓòÉΓòÉ
  5923.  
  5924. ERROR: You are trying to access a database table that could not be opened. 
  5925.  
  5926. CAUSE: Possible causes are: 
  5927.  
  5928. o Incorrect logon information. 
  5929. o The database table is already open. 
  5930. o A memory allocation error. 
  5931.  
  5932. ACTION: Try one of the following: 
  5933.  
  5934. o Enter the correct logon information. 
  5935. o Close any other open sessions of the database table. 
  5936. o Shutdown OS/2 and restart the system. 
  5937. o If the symptom persists, call your service representative. 
  5938.  
  5939.  
  5940. ΓòÉΓòÉΓòÉ 357. Error: Cannot get schema field names from database. ΓòÉΓòÉΓòÉ
  5941.  
  5942. ERROR: You are trying to use a database but the program cannot get the schema 
  5943. field names from the database. 
  5944.  
  5945. CAUSE: Possible causes are: 
  5946.  
  5947. o Another instance of this database table is already open 
  5948. o A memory allocation error 
  5949.  
  5950. ACTION: Try one of the following: 
  5951.  
  5952. o Close any other session associated with this database table. 
  5953. o Shutdown OS/2 and restart the system. 
  5954. o If the symptom persists, call your service representative. 
  5955.  
  5956.  
  5957. ΓòÉΓòÉΓòÉ 358. Error: Could not close schema stored in database. ΓòÉΓòÉΓòÉ
  5958.  
  5959. ERROR: You are trying to save the schema in a database, but the program could 
  5960. not close the database. 
  5961.  
  5962. CAUSE: Possible causes are: 
  5963.  
  5964. o Another instance of this database table is in use 
  5965. o A memory allocation error 
  5966.  
  5967. ACTION: Try one of the following: 
  5968.  
  5969. o Close other sessions associated with this database table. 
  5970. o Shutdown OS/2 and restart the system. 
  5971. o If the symptom persists, call your service representative. 
  5972.  
  5973.  
  5974. ΓòÉΓòÉΓòÉ 359. Please use the Schema Editor to create new schema fields. ΓòÉΓòÉΓòÉ
  5975.  
  5976. ERROR: This is a new database table. Please press DB Edit... to add new schema 
  5977. fields. 
  5978.  
  5979. CAUSE: The program verifies that you are creating a new database table. 
  5980.  
  5981. ACTION: 
  5982.  
  5983. o Press Ok to get out of the message box.. 
  5984. o Press DB EDit... to add new schema fields. 
  5985.  
  5986.  
  5987. ΓòÉΓòÉΓòÉ 360. Schema definition has changed. Want to save the changes? ΓòÉΓòÉΓòÉ
  5988.  
  5989. ERROR: You are trying to exit without saving changes. 
  5990.  
  5991. CAUSE: The program verifies that you really want to discard the changes. 
  5992.  
  5993. ACTION: Try one of the following: 
  5994.  
  5995. o Press Yes to save the changes. 
  5996. o Press No to exit without saving changes. 
  5997.  
  5998.  
  5999. ΓòÉΓòÉΓòÉ 361. Field size cannot be blank. ΓòÉΓòÉΓòÉ
  6000.  
  6001. ERROR: You have entered an unacceptable value as the field size. 
  6002.  
  6003. CAUSE: The field size must be within the acceptable range. 
  6004.  
  6005. ACTION: Enter an acceptable value for field size. Consult the User's Guide for 
  6006. a complete description of acceptable values and formats allowed for each type 
  6007. of database supported. 
  6008.  
  6009.  
  6010. ΓòÉΓòÉΓòÉ 362. No trailing or embedded blanks allowed. ΓòÉΓòÉΓòÉ
  6011.  
  6012. ERROR: You have entered data that contains blanks. 
  6013.  
  6014. CAUSE: The program checks for trailing or embedded blanks. 
  6015.  
  6016. ACTION: Enter the data without blanks. 
  6017.  
  6018.  
  6019. ΓòÉΓòÉΓòÉ 363. Remove all blanks within numbers. ΓòÉΓòÉΓòÉ
  6020.  
  6021. ERROR: You typed numbers that contained blanks. 
  6022.  
  6023. CAUSE: Blanks within a number are not allowed. 
  6024.  
  6025. ACTION: Enter the number without blanks. 
  6026.  
  6027.  
  6028. ΓòÉΓòÉΓòÉ 364. Numbers allowed only. ΓòÉΓòÉΓòÉ
  6029.  
  6030. ERROR: You entered characters other than numbers. 
  6031.  
  6032. CAUSE: Only numbers are accepted. 
  6033.  
  6034. ACTION: Enter numbers only. 
  6035.  
  6036.  
  6037. ΓòÉΓòÉΓòÉ 365. The size for the field is too large. ΓòÉΓòÉΓòÉ
  6038.  
  6039. ERROR: You specified too large a size for this field type. (The field type and 
  6040. size limit are provided in the error window.) 
  6041.  
  6042. CAUSE: The field size must be within the acceptable range. 
  6043.  
  6044. ACTION: Enter a value within the allowable range. Consult the User's Guide for 
  6045. a complete description of acceptable values and formats allowed for each type 
  6046. of database supported. 
  6047.  
  6048.  
  6049. ΓòÉΓòÉΓòÉ 366. Size cannot be zero ΓòÉΓòÉΓòÉ
  6050.  
  6051. ERROR: You have provided a size of zero. 
  6052.  
  6053. CAUSE: The size must be greater than zero. 
  6054.  
  6055. ACTION: Enter a size within the acceptable range. Consult the User's Guide for 
  6056. a complete description of acceptable values and formats allowed for each type 
  6057. of database supported. 
  6058.  
  6059.  
  6060. ΓòÉΓòÉΓòÉ 367. Field name must contain at least one non-blank character ΓòÉΓòÉΓòÉ
  6061.  
  6062. ERROR: You have entered a field name with only blank characters. 
  6063.  
  6064. CAUSE: The field name must have at least one non-blank character. 
  6065.  
  6066. ACTION: Enter an acceptable field name. Consult the User's Guide for a complete 
  6067. description of acceptable values and formats allowed for each type of database 
  6068. supported. 
  6069.  
  6070.  
  6071. ΓòÉΓòÉΓòÉ 368. Field name contains an unacceptable character. ΓòÉΓòÉΓòÉ
  6072.  
  6073. ERROR: You specified a field name that is not acceptable. (The character in 
  6074. error is provided in the error window.) 
  6075.  
  6076. CAUSE: The program checks the field name for acceptable characters. 
  6077.  
  6078. ACTION: Enter an acceptable field name. Consult the User's Guide for a complete 
  6079. description of acceptable values and formats allowed for each type of database 
  6080. supported. 
  6081.  
  6082.  
  6083. ΓòÉΓòÉΓòÉ 369. A field type must be selected from the drop-down list ΓòÉΓòÉΓòÉ
  6084.  
  6085. ERROR: You've specified an unrecognized field type. 
  6086.  
  6087. CAUSE: Only acceptable field types can be selected. 
  6088.  
  6089. ACTION: Select a type from the drop-down list. 
  6090.  
  6091.  
  6092. ΓòÉΓòÉΓòÉ 370. Error: There is not enough memory to continue. ΓòÉΓòÉΓòÉ
  6093.  
  6094. ERROR: You are using a process that requires more memory but there is none 
  6095. available. 
  6096.  
  6097. CAUSE: Possible causes are: 
  6098.  
  6099. o Not enough memory 
  6100. o A memory allocation error 
  6101.  
  6102. ACTION: Try one of the following: 
  6103.  
  6104. o Verify that your system meets the minimum requirements for Workplace/2. 
  6105. o Close unneeded applications or windows. 
  6106. o Shutdown OS/2 and restart the system. 
  6107. o Retry the operation. 
  6108. o If the symptom persists, call your service representative. 
  6109.  
  6110.  
  6111. ΓòÉΓòÉΓòÉ 371. Error: The Folder Join Field is not acceptable. ΓòÉΓòÉΓòÉ
  6112.  
  6113. ERROR: You specified a Folder Join Field that cannot be used. 
  6114.  
  6115. CAUSE: The field has been modified or deleted. 
  6116.  
  6117. ACTION: Try one of the following: 
  6118.  
  6119. o Verify that the field exists (use the schema editor). 
  6120. o Select another field. 
  6121.  
  6122.  
  6123. ΓòÉΓòÉΓòÉ 372. Error: The Folder Join Field was not found. ΓòÉΓòÉΓòÉ
  6124.  
  6125. ERROR: The Folder Join Field was not found and the Schema is incorrect. 
  6126.  
  6127. CAUSE: The Folder Join Field name was modified or deleted. 
  6128.  
  6129. ACTION: Try one of the following: 
  6130.  
  6131. o Verify that the Folder Join Field exists (use the schema editor). 
  6132. o Select another Folder Join field. 
  6133.  
  6134.  
  6135. ΓòÉΓòÉΓòÉ 373. Error: The Database Join Field was not found. ΓòÉΓòÉΓòÉ
  6136.  
  6137. ERROR: The Database Join Field was not found and the Schema is incorrect. 
  6138.  
  6139. CAUSE: The Database Join Field name was modified or deleted. 
  6140.  
  6141. ACTION: Try one of the following: 
  6142.  
  6143. o Verify that the Database Join Field exists (use the schema editor). 
  6144. o Select another Database Join field. 
  6145.  
  6146.  
  6147. ΓòÉΓòÉΓòÉ 374. Error: The Database Join Field is the wrong type. ΓòÉΓòÉΓòÉ
  6148.  
  6149. ERROR: You are using a Database Join Field with an incorrect Schema. 
  6150.  
  6151. CAUSE: The Database Join Field type can only be an ASCII or VARCHAR character 
  6152. string. 
  6153.  
  6154. ACTION: Select either ASCII or VARCHAR types for the Database Join Field. 
  6155.  
  6156.  
  6157. ΓòÉΓòÉΓòÉ 375. Error: Could not save Schema. ΓòÉΓòÉΓòÉ
  6158.  
  6159. ERROR: The Schema could not be saved. 
  6160.  
  6161. CAUSE: Possible causes are: 
  6162.  
  6163. o You do not have write access to the database. 
  6164. o Another instance of the database table or extended attributes is already in 
  6165.   use. 
  6166. o A memory allocation error. 
  6167.  
  6168. ACTION: Try one of the following: 
  6169.  
  6170. o Close other instances that access this schema. 
  6171. o If the symptom persists, contact your administrator. 
  6172. o Shutdown OS/2 and restart the system. 
  6173.  
  6174.  
  6175. ΓòÉΓòÉΓòÉ 376. Error: Could not save logon information. ΓòÉΓòÉΓòÉ
  6176.  
  6177. ERROR: Logon information was not saved. 
  6178.  
  6179. CAUSE: A memory allocation error. 
  6180.  
  6181. ACTION: Try one of the following: 
  6182.  
  6183. o Shutdown OS/2 and restart the system. 
  6184. o If the symptom persists, contact your administrator. 
  6185.  
  6186.  
  6187. ΓòÉΓòÉΓòÉ 377. Error: Could not replace schema. ΓòÉΓòÉΓòÉ
  6188.  
  6189. ERROR: The Schema could not be updated. 
  6190.  
  6191. CAUSE: A memory allocation error. 
  6192.  
  6193. o You do not have write access to the database. 
  6194. o Another instance of the database table or extended attributes is already in 
  6195.   use. 
  6196. o A memory allocation error. 
  6197.  
  6198. ACTION: Try one of the following: 
  6199.  
  6200. o Close other instances that acess this schema. 
  6201. o Shutdown OS/2 and restart the system. 
  6202. o If the symptom persists, contact your administrator. 
  6203.  
  6204.  
  6205. ΓòÉΓòÉΓòÉ 378. Error: The database alias name was not found ΓòÉΓòÉΓòÉ
  6206.  
  6207. ERROR: OS/2 database name does not exist 
  6208.  
  6209. CAUSE: Possible causes are: 
  6210.  
  6211. o You misspelled the database name. 
  6212. o The database does not exist. 
  6213.  
  6214. ACTION: Try one of the following: 
  6215.  
  6216. o Specify an existing database. 
  6217. o Use your database product to create a database. 
  6218.  
  6219.  
  6220. ΓòÉΓòÉΓòÉ 379. Error: Validation failed. ΓòÉΓòÉΓòÉ
  6221.  
  6222. ERROR: A database error occurred during validation. (The database message is 
  6223. provided in the error window.) 
  6224.  
  6225. CAUSE: To determine the cause, see the database message. 
  6226.  
  6227. ACTION: Try one of the following: 
  6228.  
  6229. o Try to save and validate later. 
  6230. o Use the message to determine what is wrong. 
  6231. o If the symptom persists, contact your administrator. 
  6232.  
  6233.  
  6234. ΓòÉΓòÉΓòÉ 380. Only one decimal point allowed. ΓòÉΓòÉΓòÉ
  6235.  
  6236. ERROR: You have entered more than one decimal points. 
  6237.  
  6238. CAUSE: Only one decimal point allowed. 
  6239.  
  6240. ACTION: Enter one decimal point. 
  6241.  
  6242.  
  6243. ΓòÉΓòÉΓòÉ 381. Decimal field size not specified correctly. ΓòÉΓòÉΓòÉ
  6244.  
  6245. ERROR: You have entered wrong field size. 
  6246.  
  6247. CAUSE: The program checks for field size. 
  6248.  
  6249. ACTION: Enter the data with right field size. 
  6250.  
  6251.  
  6252. ΓòÉΓòÉΓòÉ 382. Field size cannot exceed the limit. ΓòÉΓòÉΓòÉ
  6253.  
  6254. ERROR: You typed field size that exceed the limit. (The limit is provided in 
  6255. the error window.) 
  6256.  
  6257. CAUSE: The field size must be within the acceptable range. 
  6258.  
  6259. ACTION: Enter a value within the allowable range. Consult the User's Guide for 
  6260. a complete description of acceptable values and formats allowed for each type 
  6261. of database supported. 
  6262.  
  6263.  
  6264. ΓòÉΓòÉΓòÉ 383. Precision cannot exceed total number of digits. ΓòÉΓòÉΓòÉ
  6265.  
  6266. ERROR: You entered the precision greater than the total number of digits. 
  6267.  
  6268. CAUSE: Program checks the precision. 
  6269.  
  6270. ACTION: Enter the precision less or eqaul to the number of digits. 
  6271.  
  6272.  
  6273. ΓòÉΓòÉΓòÉ 384. Precision cannot exceed field size minus two. ΓòÉΓòÉΓòÉ
  6274.  
  6275. ERROR: You entered the precision greater than the total number of digits minus 
  6276. two. 
  6277.  
  6278. CAUSE: Program checks the precision. 
  6279.  
  6280. ACTION: Enter the correct precision. 
  6281.  
  6282.  
  6283. ΓòÉΓòÉΓòÉ 385. First character of a field name must be a letter. ΓòÉΓòÉΓòÉ
  6284.  
  6285. ERROR: You specified the first character of a field name wrong. 
  6286.  
  6287. CAUSE: The first character of a field name must be A thru Z. 
  6288.  
  6289. ACTION: Enter a correct field name. 
  6290.  
  6291.  
  6292. ΓòÉΓòÉΓòÉ 386. Duplicate field name. ΓòÉΓòÉΓòÉ
  6293.  
  6294. ERROR: You have provided a duplicate field name. 
  6295.  
  6296. CAUSE: No duplicate field name allowed. 
  6297.  
  6298. ACTION: Enter a different name for the field name. 
  6299.  
  6300.  
  6301. ΓòÉΓòÉΓòÉ 387. Field definition has changed. Want to save the changes? ΓòÉΓòÉΓòÉ
  6302.  
  6303. ERROR: You are trying to exit without saving changes. 
  6304.  
  6305. CAUSE: The program verifies that you really want to discard the changes. 
  6306.  
  6307. ACTION: Try one of the following: 
  6308.  
  6309. o Press Apply to save the changes. 
  6310. o Press Cancel to exit without saving changes. 
  6311.  
  6312.  
  6313. ΓòÉΓòÉΓòÉ 388. Invalid pathname entered.  Please try again. ΓòÉΓòÉΓòÉ
  6314.  
  6315. ERROR: You have entered an invalid pathname. 
  6316.  
  6317. CAUSE: You have entered an invalid pathname. 
  6318.  
  6319. ACTION: Re-enter the pathname. 
  6320.  
  6321.  
  6322. ΓòÉΓòÉΓòÉ 389. Pathname entered is not a Light Table folder. ΓòÉΓòÉΓòÉ
  6323.  
  6324. ERROR: You have entered a pathname which is not a Light Table folder. 
  6325.  
  6326. CAUSE: You have entered a pathname but the pathname is not a Light Table 
  6327. folder. 
  6328.  
  6329. ACTION: Re-enter the pathname. 
  6330.  
  6331.  
  6332. ΓòÉΓòÉΓòÉ 390. User ID not entered. ΓòÉΓòÉΓòÉ
  6333.  
  6334. ERROR: The user ID field is blank. 
  6335.  
  6336. CAUSE: You did not enter a user ID. 
  6337.  
  6338. ACTION: Enter a user ID. 
  6339.  
  6340.  
  6341. ΓòÉΓòÉΓòÉ 391. Password not entered. ΓòÉΓòÉΓòÉ
  6342.  
  6343. ERROR: The password field is blank. 
  6344.  
  6345. CAUSE: You did not enter a password. 
  6346.  
  6347. ACTION: Enter a password. 
  6348.  
  6349.  
  6350. ΓòÉΓòÉΓòÉ 392. Logon failure. ΓòÉΓòÉΓòÉ
  6351.  
  6352. ERROR: The attempt to log on to the database failed. 
  6353.  
  6354. CAUSE: Possible causes are: 
  6355.  
  6356. o You entered an undefined user ID. 
  6357. o You entered an incorrect password. 
  6358. o The Oracle server you are trying to log on to is not connected. 
  6359. o The location of the DB2/2, OS/2, or DDCS/2-to-Host database that you are 
  6360.   trying to log on to is not known. 
  6361.  
  6362. The message gives the cause of the error as reported by the database manager, 
  6363. and it varies according to the type of database: 
  6364.  
  6365. o Oracle: 
  6366.  
  6367.    - An incorrect userid or password is reported by message ORA-01017. 
  6368.    - An unconnected server is reported by message ORA-03121. 
  6369.  
  6370. o DB2/2 or OS/2 database on local system: 
  6371.  
  6372.    - An incorrect userid or password is reported by QELIB Error: Login 
  6373.      incorrect. 
  6374.    - An unknown database is reported by message SQL1013. 
  6375.  
  6376. o DB2/2 or OS/2 database on server: 
  6377.  
  6378.    - An incorrect userid or password is reported by message SQL1093. 
  6379.    - An unknown database is reported by QELIB Error: Login incorrect. 
  6380.  
  6381. o DDCS2 to Host: 
  6382.  
  6383.    - An incorrect userid or password is reported by ... 
  6384.    - An unknown database is reported by ... 
  6385.  
  6386. ACTION: Determine the type of error, and do one of the following: 
  6387.  
  6388. o If the user ID or password is incorrect, enter a correct user ID and 
  6389.   password. 
  6390.  
  6391. o If the server is not connected or the database is unknown, cancel the logon 
  6392.   dialog and correct the problem. 
  6393.  
  6394.  
  6395. ΓòÉΓòÉΓòÉ 393. Error occurred while opening database table. ΓòÉΓòÉΓòÉ
  6396.  
  6397. ERROR: An error occurred while the program is trying to open the database 
  6398. table. (The database table name and the error are provided in the error 
  6399. window.) 
  6400.  
  6401. CAUSE: Possible causes are: 
  6402.  
  6403. o The database table does not exist. 
  6404. o The database table is corrupted. 
  6405. o Logon information supplied is incorrect. 
  6406. o A memory allocation error. 
  6407. o An internal processing error occured. 
  6408.  
  6409. ACTION: Try one of the following: 
  6410.  
  6411. o Supply the correct logon information and try again. 
  6412. o Verify that your system meets the minimum requirements for the product. 
  6413. o Close unneeded applications or window. 
  6414. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6415. o If the symptom persists, call your service representative. 
  6416.  
  6417.  
  6418. ΓòÉΓòÉΓòÉ 394. Error occurred while closing database table. ΓòÉΓòÉΓòÉ
  6419.  
  6420. ERROR: An error occurred while the program is trying to close the database 
  6421. table. (The database table name and the error are provided in the error 
  6422. window.) 
  6423.  
  6424. CAUSE: Possible causes are: 
  6425.  
  6426. o The database table does not exist. 
  6427. o The database table is corrupted. 
  6428. o Logon information supplied is incorrect. 
  6429. o A memory allocation error. 
  6430. o An internal processing error occured. 
  6431.  
  6432. ACTION: Try one of the following: 
  6433.  
  6434. o Supply the correct logon information and try again. 
  6435. o Verify that your system meets the minimum requirements for the product. 
  6436. o Close unneeded applications or window. 
  6437. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6438. o If the symptom persists, call your service representative. 
  6439.  
  6440.  
  6441. ΓòÉΓòÉΓòÉ 395. Error occurred while creating database table. ΓòÉΓòÉΓòÉ
  6442.  
  6443. ERROR: An error occurred while the program is trying to create the database 
  6444. table. (The database table name and the error are provided in the error 
  6445. window.) 
  6446.  
  6447. CAUSE: Possible causes are: 
  6448.  
  6449. o Logon information supplied is incorrect. 
  6450. o A memory allocation error. 
  6451. o An internal processing error occured. 
  6452.  
  6453. ACTION: Try one of the following: 
  6454.  
  6455. o Supply the correct logon information and try again. 
  6456. o Verify that your system meets the minimum requirements for the product. 
  6457. o Close unneeded applications or window. 
  6458. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6459. o If the symptom persists, call your service representative. 
  6460.  
  6461.  
  6462. ΓòÉΓòÉΓòÉ 396. Error occurred while adding record to database table. ΓòÉΓòÉΓòÉ
  6463.  
  6464. ERROR: An error occurred while the program is trying to add a record to the 
  6465. database table. (The database table name and the error are provided in the 
  6466. error window.) 
  6467.  
  6468. CAUSE: Possible causes are: 
  6469.  
  6470. o The database table does not exist. 
  6471. o The database table is corrupted. 
  6472. o Logon information supplied is incorrect. 
  6473. o A memory allocation error. 
  6474. o An internal processing error occured. 
  6475.  
  6476. ACTION: Try one of the following: 
  6477.  
  6478. o Supply the correct logon information and try again. 
  6479. o Verify that your system meets the minimum requirements for the product. 
  6480. o Close unneeded applications or window. 
  6481. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6482. o If the symptom persists, call your service representative. 
  6483.  
  6484.  
  6485. ΓòÉΓòÉΓòÉ 397. Error occurred while updating database record. ΓòÉΓòÉΓòÉ
  6486.  
  6487. ERROR: An error occurred while the program is trying to update the database 
  6488. record. (The database table name and the error are provided in the error 
  6489. window.) 
  6490.  
  6491. CAUSE: Possible causes are: 
  6492.  
  6493. o The database table does not exist. 
  6494. o The database table is corrupted. 
  6495. o Logon information supplied is incorrect. 
  6496. o A memory allocation error. 
  6497. o An internal processing error occured. 
  6498.  
  6499. ACTION: Try one of the following: 
  6500.  
  6501. o Supply the correct logon information and try again. 
  6502. o Verify that your system meets the minimum requirements for the product. 
  6503. o Close unneeded applications or window. 
  6504. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6505. o If the symptom persists, call your service representative. 
  6506.  
  6507.  
  6508. ΓòÉΓòÉΓòÉ 398. Error occurred while querying database table. ΓòÉΓòÉΓòÉ
  6509.  
  6510. ERROR: An error occurred while the program is trying to query the database 
  6511. table. (The database table name and the error are provided in the error 
  6512. window.) 
  6513.  
  6514. CAUSE: Possible causes are: 
  6515.  
  6516. o The database table does not exist. 
  6517. o The database table is corrupted. 
  6518. o Logon information supplied is incorrect. 
  6519. o A memory allocation error. 
  6520. o An internal processing error occured. 
  6521.  
  6522. ACTION: Try one of the following: 
  6523.  
  6524. o Supply the correct logon information and try again. 
  6525. o Verify that your system meets the minimum requirements for the product. 
  6526. o Close unneeded applications or window. 
  6527. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6528. o If the symptom persists, call your service representative. 
  6529.  
  6530.  
  6531. ΓòÉΓòÉΓòÉ 399. Error occurred while getting database record. ΓòÉΓòÉΓòÉ
  6532.  
  6533. ERROR: An error occurred while the program is trying to get a database record. 
  6534. (The database table name and the error are provided in the error window.) 
  6535.  
  6536. CAUSE: Possible causes are: 
  6537.  
  6538. o The database table does not exist. 
  6539. o The database table is corrupted. 
  6540. o Logon information supplied is incorrect. 
  6541. o A memory allocation error. 
  6542. o An internal processing error occured. 
  6543.  
  6544. ACTION: Try one of the following: 
  6545.  
  6546. o Supply the correct logon information and try again. 
  6547. o Verify that your system meets the minimum requirements for the product. 
  6548. o Close unneeded applications or window. 
  6549. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6550. o If the symptom persists, call your service representative. 
  6551.  
  6552.  
  6553. ΓòÉΓòÉΓòÉ 400. Error occurred during committing database table. ΓòÉΓòÉΓòÉ
  6554.  
  6555. ERROR: An error occurred while the program is trying to commit the database 
  6556. table. (The database table name and the error are provided in the error 
  6557. window.) 
  6558.  
  6559. CAUSE: Possible causes are: 
  6560.  
  6561. o The database table does not exist. 
  6562. o The database table is corrupted. 
  6563. o Logon information supplied is incorrect. 
  6564. o A memory allocation error. 
  6565. o An internal processing error occured. 
  6566.  
  6567. ACTION: Try one of the following: 
  6568.  
  6569. o Supply the correct logon information and try again. 
  6570. o Verify that your system meets the minimum requirements for the product. 
  6571. o Close unneeded applications or window. 
  6572. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6573. o If the symptom persists, call your service representative. 
  6574.  
  6575.  
  6576. ΓòÉΓòÉΓòÉ 401. Error occurred while creating index for database table. ΓòÉΓòÉΓòÉ
  6577.  
  6578. ERROR: An error occurred while the program is trying to create index for the 
  6579. database table. (The database table name and the error are provided in the 
  6580. error window.) 
  6581.  
  6582. CAUSE: Possible causes are: 
  6583.  
  6584. o The database table does not exist. 
  6585. o The database table is corrupted. 
  6586. o Logon information supplied is incorrect. 
  6587. o A memory allocation error. 
  6588. o An internal processing error occured. 
  6589.  
  6590. ACTION: Try one of the following: 
  6591.  
  6592. o Supply the correct logon information and try again. 
  6593. o Verify that your system meets the minimum requirements for the product. 
  6594. o Close unneeded applications or window. 
  6595. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6596. o If the symptom persists, call your service representative. 
  6597.  
  6598.  
  6599. ΓòÉΓòÉΓòÉ 402. Error occurred while deleting record from database table. ΓòÉΓòÉΓòÉ
  6600.  
  6601. ERROR: An error occurred while the program is trying to delete a record from 
  6602. the database table. (The database table name and the error are provided in the 
  6603. error window.) 
  6604.  
  6605. CAUSE: Possible causes are: 
  6606.  
  6607. o The database table does not exist. 
  6608. o The database table is corrupted. 
  6609. o Logon information supplied is incorrect. 
  6610. o A memory allocation error. 
  6611. o An internal processing error occured. 
  6612.  
  6613. ACTION: Try one of the following: 
  6614.  
  6615. o Supply the correct logon information and try again. 
  6616. o Verify that your system meets the minimum requirements for the product. 
  6617. o Close unneeded applications or window. 
  6618. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6619. o If the symptom persists, call your service representative. 
  6620.  
  6621.  
  6622. ΓòÉΓòÉΓòÉ 403. Error occurred while deleting database table. ΓòÉΓòÉΓòÉ
  6623.  
  6624. ERROR: An error occurred while the program is trying to delete the database 
  6625. table. (The database table name and the error are provided in the error 
  6626. window.) 
  6627.  
  6628. CAUSE: Possible causes are: 
  6629.  
  6630. o The database table does not exist. 
  6631. o The database table is corrupted. 
  6632. o Logon information supplied is incorrect. 
  6633. o A memory allocation error. 
  6634. o An internal processing error occured. 
  6635.  
  6636. ACTION: Try one of the following: 
  6637.  
  6638. o Supply the correct logon information and try again. 
  6639. o Verify that your system meets the minimum requirements for the product. 
  6640. o Close unneeded applications or window. 
  6641. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6642. o If the symptom persists, call your service representative. 
  6643.  
  6644.  
  6645. ΓòÉΓòÉΓòÉ 404. Error occurred while reading database heading information. ΓòÉΓòÉΓòÉ
  6646.  
  6647. ERROR: An error occurred while the program is trying to read the database 
  6648. heading information. (The database table name and the error are provided in the 
  6649. error window.) 
  6650.  
  6651. CAUSE: Possible causes are: 
  6652.  
  6653. o The database table does not exist. 
  6654. o The database table is corrupted. 
  6655. o Logon information supplied is incorrect. 
  6656. o A memory allocation error. 
  6657. o An internal processing error occured. 
  6658.  
  6659. ACTION: Try one of the following: 
  6660.  
  6661. o Supply the correct logon information and try again. 
  6662. o Verify that your system meets the minimum requirements for the product. 
  6663. o Close unneeded applications or window. 
  6664. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6665. o If the symptom persists, call your service representative. 
  6666.  
  6667.  
  6668. ΓòÉΓòÉΓòÉ 405. Error occurred during rollback process for database table. ΓòÉΓòÉΓòÉ
  6669.  
  6670. ERROR: An error occurred while the program is trying to rollback the process 
  6671. for the database table. (The database table name and the error are provided in 
  6672. the error window.) 
  6673.  
  6674. CAUSE: Possible causes are: 
  6675.  
  6676. o The database table does not exist. 
  6677. o The database table is corrupted. 
  6678. o Logon information supplied is incorrect. 
  6679. o A memory allocation error. 
  6680. o An internal processing error occured. 
  6681.  
  6682. ACTION: Try one of the following: 
  6683.  
  6684. o Supply the correct logon information and try again. 
  6685. o Verify that your system meets the minimum requirements for the product. 
  6686. o Close unneeded applications or window. 
  6687. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6688. o If the symptom persists, call your service representative. 
  6689.  
  6690.  
  6691. ΓòÉΓòÉΓòÉ 406. Error: window creation failed. ΓòÉΓòÉΓòÉ
  6692.  
  6693. ERROR: An error occurred while the program is trying to create a window. 
  6694.  
  6695. CAUSE: The program cannot create a window. 
  6696.  
  6697. ACTION: Try one of the following: 
  6698.  
  6699. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6700. o If the symptom persists, call your service representative. 
  6701.  
  6702.  
  6703. ΓòÉΓòÉΓòÉ 407. Error: window positioning failed. ΓòÉΓòÉΓòÉ
  6704.  
  6705. ERROR: An error occurred while the program is trying to position the window. 
  6706.  
  6707. CAUSE: The program cannot position the window. 
  6708.  
  6709. ACTION: Try one of the following: 
  6710.  
  6711. o Shutdown OS/2 and restart the system, then try the same operation again. 
  6712. o If the symptom persists, call your service representative. 
  6713.  
  6714.  
  6715. ΓòÉΓòÉΓòÉ 408. Error occurred during creating message queue. ΓòÉΓòÉΓòÉ
  6716.  
  6717. ERROR: An error occurred while the program is trying to create a message queue. 
  6718.  
  6719. CAUSE: Possible causes are: 
  6720.  
  6721. o A memory allocation error. 
  6722. o An internal processing error occured. 
  6723.  
  6724. ACTION: Try one of the following: 
  6725.  
  6726. o Verify that your system meets the minimum requirements for the product. 
  6727. o Close unneeded applications or windows. 
  6728. o Archive any large or infrequently used files. 
  6729. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6730. o Shutdown OS/2 and restart the system. 
  6731. o If the symptom persists, call your service representative. 
  6732.  
  6733.  
  6734. ΓòÉΓòÉΓòÉ 409. Error occurred during window initialization. ΓòÉΓòÉΓòÉ
  6735.  
  6736. ERROR: An error occurred while the program is trying to initialize the window. 
  6737.  
  6738. CAUSE: Possible causes are: 
  6739.  
  6740. o A memory allocation error. 
  6741. o An internal processing error occured. 
  6742.  
  6743. ACTION: Try one of the following: 
  6744.  
  6745. o Verify that your system meets the minimum requirements for the product. 
  6746. o Close unneeded applications or windows. 
  6747. o Archive any large or infrequently used files. 
  6748. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6749. o Shutdown OS/2 and restart the system. 
  6750. o If the symptom persists, call your service representative. 
  6751.  
  6752.  
  6753. ΓòÉΓòÉΓòÉ 410. No help is available. ΓòÉΓòÉΓòÉ
  6754.  
  6755. ERROR: An error occurred while the program is trying to locate the help file. 
  6756.  
  6757. CAUSE: Possible causes are: 
  6758.  
  6759. o The help file does not exist. 
  6760. o The help file has been renamed. 
  6761. o The help file is not in the correct path. 
  6762.  
  6763. ACTION: Try one of the following: 
  6764.  
  6765. o Copy the help files from the install package to the disk. 
  6766. o Update the CONFIG.SYS file with the correct help path. 
  6767.  
  6768.  
  6769. ΓòÉΓòÉΓòÉ 411. Help terminated dur to error. ΓòÉΓòÉΓòÉ
  6770.  
  6771. ERROR: An error occurred while the program is trying to terminate the help 
  6772. operation. 
  6773.  
  6774. CAUSE: Possible causes are: 
  6775.  
  6776. o The help file is corrupted. 
  6777. o A memory allocation error. 
  6778.  
  6779. ACTION: Try one of the following: 
  6780.  
  6781. o Copy the help files from the install package to the disk. 
  6782. o Verify that your system meets the minimum requirements for the product. 
  6783. o Close unneeded applications or windows. 
  6784. o Archive any large or infrequently used files. 
  6785. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6786. o Shutdown OS/2 and restart the system. 
  6787. o If the symptom persists, call your service representative. 
  6788.  
  6789.  
  6790. ΓòÉΓòÉΓòÉ 412. Help error occurred. ΓòÉΓòÉΓòÉ
  6791.  
  6792. ERROR: An error occurred while the program is processing the on-line help. 
  6793.  
  6794. CAUSE: Possible causes are: 
  6795.  
  6796. o The help file is corrupted. 
  6797. o A memory allocation error. 
  6798.  
  6799. ACTION: Try one of the following: 
  6800.  
  6801. o Copy the help files from the install package to the disk. 
  6802. o Verify that your system meets the minimum requirements for the product. 
  6803. o Close unneeded applications or windows. 
  6804. o Archive any large or infrequently used files. 
  6805. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6806. o Shutdown OS/2 and restart the system. 
  6807. o If the symptom persists, call your service representative. 
  6808.  
  6809.  
  6810. ΓòÉΓòÉΓòÉ 413. Help error. ΓòÉΓòÉΓòÉ
  6811.  
  6812. ERROR: An error occurred while the program is trying to process the on-line 
  6813. help. 
  6814.  
  6815. CAUSE: Possible causes are: 
  6816.  
  6817. o The help file is corrupted. 
  6818. o A memory allocation error. 
  6819.  
  6820. ACTION: Try one of the following: 
  6821.  
  6822. o Copy the help files from the install package to the disk. 
  6823. o Verify that your system meets the minimum requirements for the product. 
  6824. o Close unneeded applications or windows. 
  6825. o Archive any large or infrequently used files. 
  6826. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6827. o Shutdown OS/2 and restart the system. 
  6828. o If the symptom persists, call your service representative. 
  6829.  
  6830.  
  6831. ΓòÉΓòÉΓòÉ 414. Error: could not read masked file. ΓòÉΓòÉΓòÉ
  6832.  
  6833. ERROR: An error occurred while the program is trying to read the masked file. 
  6834. (The masked file name is provided in the error window.) 
  6835.  
  6836. CAUSE: Possible causes are: 
  6837.  
  6838. o The masked file is corrupted. 
  6839. o The masked file does not exist. 
  6840. o The masked file has invalid format. 
  6841. o A memory allocation error. 
  6842.  
  6843. ACTION: Try one of the following: 
  6844.  
  6845. o Supply the correct masked file name and try again. 
  6846. o Verify that your system meets the minimum requirements for the product. 
  6847. o Close unneeded applications or windows. 
  6848. o Archive any large or infrequently used files. 
  6849. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6850. o Shutdown OS/2 and restart the system. 
  6851. o If the symptom persists, call your service representative. 
  6852.  
  6853.  
  6854. ΓòÉΓòÉΓòÉ 415. Error: could not read image file. ΓòÉΓòÉΓòÉ
  6855.  
  6856. ERROR: An error occurred while the program is trying to read the image file. 
  6857. (The image file name is provided in the error window.) 
  6858.  
  6859. CAUSE: Possible causes are: 
  6860.  
  6861. o The image file is corrupted. 
  6862. o The image file does not exist. 
  6863. o The image file has invalid format. 
  6864. o A memory allocation error. 
  6865.  
  6866. ACTION: Try one of the following: 
  6867.  
  6868. o Supply the correct image file name and try again. 
  6869. o Verify that your system meets the minimum requirements for the product. 
  6870. o Close unneeded applications or windows. 
  6871. o Archive any large or infrequently used files. 
  6872. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6873. o Shutdown OS/2 and restart the system. 
  6874. o If the symptom persists, call your service representative. 
  6875.  
  6876.  
  6877. ΓòÉΓòÉΓòÉ 416. Error: could not read image file. ΓòÉΓòÉΓòÉ
  6878.  
  6879. ERROR: An error occurred while the program is trying to read the image file. 
  6880. (The image file name is provided in the error window.) 
  6881.  
  6882. CAUSE: Possible causes are: 
  6883.  
  6884. o The image file is corrupted. 
  6885. o The image file does not exist. 
  6886. o The image file has invalid format. 
  6887. o A memory allocation error. 
  6888.  
  6889. ACTION: Try one of the following: 
  6890.  
  6891. o Supply the correct image file name and try again. 
  6892. o Verify that your system meets the minimum requirements for the product. 
  6893. o Close unneeded applications or windows. 
  6894. o Archive any large or infrequently used files. 
  6895. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6896. o Shutdown OS/2 and restart the system. 
  6897. o If the symptom persists, call your service representative. 
  6898.  
  6899.  
  6900. ΓòÉΓòÉΓòÉ 417. Error: Unable to allocate resources. ΓòÉΓòÉΓòÉ
  6901.  
  6902. ERROR: You have no more memory available. 
  6903.  
  6904. CAUSE: Memory resources are being used. 
  6905.  
  6906. ACTION: Try one of the following: 
  6907.  
  6908. o Verify that your system meets the minimum requirements for the product. 
  6909. o Close unneeded applications or windows. 
  6910. o Archive any large or infrequently used files. 
  6911. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6912. o Shutdown OS/2 and restart the system. 
  6913. o If the symptom persists, call your service representative. 
  6914.  
  6915.  
  6916. ΓòÉΓòÉΓòÉ 418. Error: Unable to allocate resources. ΓòÉΓòÉΓòÉ
  6917.  
  6918. ERROR: You have no more memory available. 
  6919.  
  6920. CAUSE: Memory resources are being used. 
  6921.  
  6922. ACTION: Try one of the following: 
  6923.  
  6924. o Verify that your system meets the minimum requirements for the product. 
  6925. o Close unneeded applications or windows. 
  6926. o Archive any large or infrequently used files. 
  6927. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6928. o Shutdown OS/2 and restart the system. 
  6929. o If the symptom persists, call your service representative. 
  6930.  
  6931.  
  6932. ΓòÉΓòÉΓòÉ 419. Error: Unable to allocate resources. ΓòÉΓòÉΓòÉ
  6933.  
  6934. ERROR: You have no more memory available. 
  6935.  
  6936. CAUSE: Memory resources are being used. 
  6937.  
  6938. ACTION: Try one of the following: 
  6939.  
  6940. o Verify that your system meets the minimum requirements for the product. 
  6941. o Close unneeded applications or windows. 
  6942. o Archive any large or infrequently used files. 
  6943. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  6944. o Shutdown OS/2 and restart the system. 
  6945. o If the symptom persists, call your service representative. 
  6946.  
  6947.  
  6948. ΓòÉΓòÉΓòÉ 420. Error: Internal database is corrupted. ΓòÉΓòÉΓòÉ
  6949.  
  6950. ERROR: The internal database table is corrupted. (The database table name is 
  6951. provided in the error window.) 
  6952.  
  6953. CAUSE: Possible causes are: 
  6954.  
  6955. o The database table has been updated incorrectly. 
  6956. o The database table is corrupted. 
  6957. o An internal processing error occured. 
  6958.  
  6959. ACTION: Try one of the following: 
  6960.  
  6961. o Undo the updates to the database table. 
  6962. o Recreate the database table. 
  6963. o If the symptom persists, call your service representative. 
  6964.  
  6965.  
  6966. ΓòÉΓòÉΓòÉ 421. Error: Unable to update feature table. ΓòÉΓòÉΓòÉ
  6967.  
  6968. ERROR: An error occurred while the program is trying to update the feature 
  6969. table. (The feature table name is provided in the error window.) 
  6970.  
  6971. CAUSE: Possible causes are: 
  6972.  
  6973. o The database table has been updated incorrectly. 
  6974. o The database table is corrupted. 
  6975. o An internal processing error occured. 
  6976.  
  6977. ACTION: Try one of the following: 
  6978.  
  6979. o Undo the updates to the database table. 
  6980. o Recreate the database table. 
  6981. o If the symptom persists, call your service representative. 
  6982.  
  6983.  
  6984. ΓòÉΓòÉΓòÉ 422. Unable to open file. ΓòÉΓòÉΓòÉ
  6985.  
  6986. ERROR: An error occurred while the program is trying to open the file. (The 
  6987. file name is provided in the error window.) 
  6988.  
  6989. CAUSE: Possible causes are: 
  6990.  
  6991. o The file name does not exist. 
  6992. o The file name is supplied incorrectly 
  6993. o The file is locked by other users. 
  6994.  
  6995. ACTION: Try one of the following: 
  6996.  
  6997. o Restore the file if it does not exist. 
  6998. o Close other use of the file and try again. 
  6999. o Supply the correct file name and try again. 
  7000.  
  7001.  
  7002. ΓòÉΓòÉΓòÉ 423. Unable to read from file. ΓòÉΓòÉΓòÉ
  7003.  
  7004. ERROR: An error occurred while the program is trying to read from the file. 
  7005. (The file name is provided in the error window.) 
  7006.  
  7007. CAUSE: Possible causes are: 
  7008.  
  7009. o The file name does not exist. 
  7010. o The file name is supplied incorrectly 
  7011. o The file is locked by other users. 
  7012. o The file has invalid format. 
  7013.  
  7014. ACTION: Try one of the following: 
  7015.  
  7016. o Restore the file if it does not exist. 
  7017. o Close other use of the file and try again. 
  7018. o Supply the correct file name and try again. 
  7019.  
  7020.  
  7021. ΓòÉΓòÉΓòÉ 424. Unable to write to file. ΓòÉΓòÉΓòÉ
  7022.  
  7023. ERROR: An error occurred while the program is trying to write to the file. (The 
  7024. file name is provided in the error window.) 
  7025.  
  7026. CAUSE: Possible causes are: 
  7027.  
  7028. o The file name does not exist. 
  7029. o The file name is supplied incorrectly 
  7030. o The file is locked by other users. 
  7031. o The file has invalid format. 
  7032. o The file is read-only. 
  7033.  
  7034. ACTION: Try one of the following: 
  7035.  
  7036. o Supply another file name and try again. 
  7037.  
  7038.  
  7039. ΓòÉΓòÉΓòÉ 425. Unable to create thread. ΓòÉΓòÉΓòÉ
  7040.  
  7041. ERROR: An error occurred while the program is trying to create a thread. 
  7042.  
  7043. CAUSE: Possible causes are: 
  7044.  
  7045. o A memory allocation error. 
  7046. o Protection violation. 
  7047.  
  7048. ACTION: Try one of the following: 
  7049.  
  7050. o Verify that your system meets the minimum requirements for the product. 
  7051. o Close unneeded applications or windows. 
  7052. o Archive any large or infrequently used files. 
  7053. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  7054. o Shutdown OS/2 and restart the system. 
  7055. o If the symptom persists, call your service representative. 
  7056.  
  7057.  
  7058. ΓòÉΓòÉΓòÉ 426. Unable to kill thread. ΓòÉΓòÉΓòÉ
  7059.  
  7060. ERROR: An error occurred while the program is trying to kill the thread. 
  7061.  
  7062. CAUSE: Possible causes are: 
  7063.  
  7064. o An internal processing error occured. 
  7065.  
  7066. ACTION: Try one of the following: 
  7067.  
  7068. o Shutdown OS/2 and restart the system. 
  7069. o If the symptom persists, call your service representative. 
  7070.  
  7071.  
  7072. ΓòÉΓòÉΓòÉ 427. Unable to suspend thread. ΓòÉΓòÉΓòÉ
  7073.  
  7074. ERROR: An error occurred while the program is trying to suspend the thread. 
  7075.  
  7076. CAUSE: Possible causes are: 
  7077.  
  7078. o An internal processing error occured. 
  7079.  
  7080. ACTION: Try one of the following: 
  7081.  
  7082. o Shutdown OS/2 and restart the system. 
  7083. o If the symptom persists, call your service representative. 
  7084.  
  7085.  
  7086. ΓòÉΓòÉΓòÉ 428. Unable to resume thread. ΓòÉΓòÉΓòÉ
  7087.  
  7088. ERROR: An error occurred while the program is trying to resume the thread. 
  7089.  
  7090. CAUSE: Possible causes are: 
  7091.  
  7092. o An internal processing error occured. 
  7093.  
  7094. ACTION: Try one of the following: 
  7095.  
  7096. o Shutdown OS/2 and restart the system. 
  7097. o If the symptom persists, call your service representative. 
  7098.  
  7099.  
  7100. ΓòÉΓòÉΓòÉ 429. First character must be a letter. ΓòÉΓòÉΓòÉ
  7101.  
  7102. ERROR: You specified the first character of a field name wrong. 
  7103.  
  7104. CAUSE: The first character must be A thru Z. 
  7105.  
  7106. ACTION: Enter a correct name. 
  7107.  
  7108.  
  7109. ΓòÉΓòÉΓòÉ 430. The character is invalid. ΓòÉΓòÉΓòÉ
  7110.  
  7111. ERROR: You enterfied the first character of a field name wrong. (The invalid 
  7112. character is displayed in the error window.) 
  7113.  
  7114. CAUSE: The first character must be A thru Z. 
  7115.  
  7116. ACTION: Enter a correct name. 
  7117.  
  7118.  
  7119. ΓòÉΓòÉΓòÉ 431. Second character of SERVER is invalid. ΓòÉΓòÉΓòÉ
  7120.  
  7121. ERROR: The second character of the SERVER name you enetered is incorrect. 
  7122.  
  7123. CAUSE: You entered the SERVER name incorrectly. 
  7124.  
  7125. ACTION: Enter the correct SERVER name. 
  7126.  
  7127.  
  7128. ΓòÉΓòÉΓòÉ 432. Field cannot be blank. ΓòÉΓòÉΓòÉ
  7129.  
  7130. ERROR: The field can not be left blank. 
  7131.  
  7132. CAUSE: You did not enter the required field. 
  7133.  
  7134. ACTION: Enter the required field. 
  7135.  
  7136.  
  7137. ΓòÉΓòÉΓòÉ 433. Invalid or no Catalog has been specified. ΓòÉΓòÉΓòÉ
  7138.  
  7139. ERROR: The program is trying to load the Catalog, but the Catalog does not 
  7140. exist. (The Catalog name is provided in the error window.) 
  7141.  
  7142. CAUSE: Possible causes are: 
  7143.  
  7144. o You specified an invalid Catalog name. 
  7145. o You specified a Catalog name which does not exist. 
  7146.  
  7147. ACTION: Try one of the following: 
  7148.  
  7149. o Click 'Abort' to exit the program. 
  7150. o Click 'Retry' to reload the Catalog. 
  7151. o Click 'Ignore' to respecify the Catalog name. 
  7152.  
  7153.  
  7154. ΓòÉΓòÉΓòÉ 434. Catalog is read only. ΓòÉΓòÉΓòÉ
  7155.  
  7156. ERROR: The program is trying to update the Catalog, but the Catalog is read 
  7157. only. (The Catalog name is provided in the error window.) 
  7158.  
  7159. CAUSE: Possible causes are: 
  7160.  
  7161. o You did not know that the Catalog is read only and try to save information to 
  7162.   it. 
  7163. o You open a wrong Catalog. 
  7164.  
  7165. ACTION: Try one of the following: 
  7166.  
  7167. o Open another read/write Catalog and continue the process. 
  7168. o Do not do any classification operation to the read-only Catalog. 
  7169.  
  7170.  
  7171. ΓòÉΓòÉΓòÉ 435. This is not a Catalog. ΓòÉΓòÉΓòÉ
  7172.  
  7173. ERROR: The program does not recognize the name supplied as a Catalog name. (The 
  7174. Catalog name is provided in the error window.) 
  7175.  
  7176. CAUSE: Possible causes are: 
  7177.  
  7178. o You specified a wrong Catalog name. 
  7179. o You open a wrong Catalog. 
  7180.  
  7181. ACTION: Try one of the following: 
  7182.  
  7183. o Resupply the Catalog name and try again. 
  7184.  
  7185.  
  7186. ΓòÉΓòÉΓòÉ 436. This is not a Catalog. ΓòÉΓòÉΓòÉ
  7187.  
  7188. ERROR: The program does not recognize the name supplied as a Catalog name. (The 
  7189. Catalog name is provided in the error window.) 
  7190.  
  7191. CAUSE: Possible causes are: 
  7192.  
  7193. o You specified a wrong Catalog name. 
  7194. o You open a wrong Catalog. 
  7195.  
  7196. ACTION: Try one of the following: 
  7197.  
  7198. o Resupply the Catalog name and try again. 
  7199.  
  7200.  
  7201. ΓòÉΓòÉΓòÉ 437. Error occurred while computing database table. ΓòÉΓòÉΓòÉ
  7202.  
  7203. ERROR: An error occurred while the program is trying to compute the data in the 
  7204. database table. (The database table name is provided in the error window.) 
  7205.  
  7206. CAUSE: Possible causes are: 
  7207.  
  7208. o The database table is corrupted. 
  7209. o An internal processing error occured. 
  7210.  
  7211. ACTION: Try one of the following: 
  7212.  
  7213. o Re-classify the area in the database table. 
  7214. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7215. o If the symptom persists, call your service representative. 
  7216.  
  7217.  
  7218. ΓòÉΓòÉΓòÉ 438. Error occurred while computing distributed average color ΓòÉΓòÉΓòÉ
  7219.  
  7220. table. 
  7221.  
  7222. ERROR: An error occurred while the program is trying to compute the data in the 
  7223. distributed average color table. (The distributed average color table name is 
  7224. provided in the error window.) 
  7225.  
  7226. CAUSE: Possible causes are: 
  7227.  
  7228. o The distributed average color table is corrupted. 
  7229. o An internal processing error occured. 
  7230.  
  7231. ACTION: Try one of the following: 
  7232.  
  7233. o Re-classify the area in the distributed average color table. 
  7234. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7235. o If the symptom persists, call your service representative. 
  7236.  
  7237.  
  7238. ΓòÉΓòÉΓòÉ 439. Error occurred while computing histogram table. ΓòÉΓòÉΓòÉ
  7239.  
  7240. ERROR: An error occurred while the program is trying to compute the data in the 
  7241. histogram table. (The histogram table name is provided in the error window.) 
  7242.  
  7243. CAUSE: Possible causes are: 
  7244.  
  7245. o The histogram table is corrupted. 
  7246. o An internal processing error occured. 
  7247.  
  7248. ACTION: Try one of the following: 
  7249.  
  7250. o Re-classify the area in the histogram table. 
  7251. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7252. o If the symptom persists, call your service representative. 
  7253.  
  7254.  
  7255. ΓòÉΓòÉΓòÉ 440. Error occurred while computing texture table. ΓòÉΓòÉΓòÉ
  7256.  
  7257. ERROR: An error occurred while the program is trying to compute the data in the 
  7258. texture table. (The texture table name is provided in the error window.) 
  7259.  
  7260. CAUSE: Possible causes are: 
  7261.  
  7262. o The texture table is corrupted. 
  7263. o An internal processing error occured. 
  7264.  
  7265. ACTION: Try one of the following: 
  7266.  
  7267. o Re-classify the area in the texture table. 
  7268. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7269. o If the symptom persists, call your service representative. 
  7270.  
  7271.  
  7272. ΓòÉΓòÉΓòÉ 441. Error occurred while computing shape table. ΓòÉΓòÉΓòÉ
  7273.  
  7274. ERROR: An error occurred while the program is trying to compute the data in the 
  7275. shape table. (The shape table name is provided in the error window.) 
  7276.  
  7277. CAUSE: Possible causes are: 
  7278.  
  7279. o The shape table is corrupted. 
  7280. o An internal processing error occured. 
  7281.  
  7282. ACTION: Try one of the following: 
  7283.  
  7284. o Re-classify the area in the shape table. 
  7285. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7286. o If the symptom persists, call your service representative. 
  7287.  
  7288.  
  7289. ΓòÉΓòÉΓòÉ 442. Error occurred while computing layout table. ΓòÉΓòÉΓòÉ
  7290.  
  7291. ERROR: An error occurred while the program is trying to compute the data in the 
  7292. layout table. (The layout table name is provided in the error window.) 
  7293.  
  7294. CAUSE: Possible causes are: 
  7295.  
  7296. o The layout table is corrupted. 
  7297. o An internal processing error occured. 
  7298.  
  7299. ACTION: Try one of the following: 
  7300.  
  7301. o Re-classify the area in the layout table. 
  7302. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7303. o If the symptom persists, call your service representative. 
  7304.  
  7305.  
  7306. ΓòÉΓòÉΓòÉ 443. There is no record to be computed in this Catalog. ΓòÉΓòÉΓòÉ
  7307.  
  7308. ERROR: You are trying to analyze the data in the Catalog, but there is no 
  7309. record to be computed in this Catalog. 
  7310.  
  7311. CAUSE: Possible causes are: 
  7312.  
  7313. o You specify the Catalog name incorrectly. 
  7314.  
  7315. ACTION: Try one of the following: 
  7316.  
  7317. o Specify the correct Catalog name and try again. 
  7318.  
  7319.  
  7320. ΓòÉΓòÉΓòÉ 444. No features selected - Image Analyzer will not start. ΓòÉΓòÉΓòÉ
  7321.  
  7322. ERROR: You are trying to analyze the data in the Catalog, but no features are 
  7323. selected for analyzing. 
  7324.  
  7325. CAUSE: Possible causes are: 
  7326.  
  7327. o You did not select the features correctly. 
  7328.  
  7329. ACTION: Try one of the following: 
  7330.  
  7331. o Reselect the features to be calculated and try again. 
  7332.  
  7333.  
  7334. ΓòÉΓòÉΓòÉ 445. Feature Vector tables have been successfully updated. ΓòÉΓòÉΓòÉ
  7335.  
  7336. INFORMATION: The program has successfully updated all the data in the features 
  7337. vector tables. 
  7338.  
  7339. CAUSE: The program acknowledges the user of the successful completion of the 
  7340. operation. 
  7341.  
  7342.  
  7343. ΓòÉΓòÉΓòÉ 446. Feature Vector tables may not be valid for quering ΓòÉΓòÉΓòÉ
  7344.  
  7345. purpose due to error. 
  7346.  
  7347. ERROR: An error occurred while the program is trying to analyze the data in the 
  7348. feature vector tables.  This resulted in the feature vector tables not valid 
  7349. for quering. 
  7350.  
  7351. CAUSE: Possible causes are: 
  7352.  
  7353. o The feature vector tables are corrupted. 
  7354.  
  7355. ACTION: Try one of the following: 
  7356.  
  7357. o Reselect the features to be calculated and try again. 
  7358. o If the symptom persists, call you service representative. 
  7359.  
  7360.  
  7361. ΓòÉΓòÉΓòÉ 447. Unable to access control information for Catalog. ΓòÉΓòÉΓòÉ
  7362.  
  7363. ERROR: The program is not able to access the control information for the 
  7364. Catalog. (The Catalog name is provided in the error window.) 
  7365.  
  7366. CAUSE: Possible causes are: 
  7367.  
  7368. o The control file is corrupted. 
  7369. o The control file does not exist. 
  7370.  
  7371. ACTION: Try one of the following: 
  7372.  
  7373. o Click on 'OK' to regenerate the control file. 
  7374. o Click on 'Cancel' to cancel the operation. 
  7375.  
  7376.  
  7377. ΓòÉΓòÉΓòÉ 448. Catalog contains unsupported database type. ΓòÉΓòÉΓòÉ
  7378.  
  7379. ERROR: The Catalog contains database type which is not supported by the 
  7380. program. (The Catalog name is provided in the error window.) 
  7381.  
  7382. CAUSE: Possible causes are: 
  7383.  
  7384. o The Catalog is created by other source with unsupported database type. 
  7385.  
  7386. ACTION: Try one of the following: 
  7387.  
  7388. o Recreate the Catalog with supported database type and try again. 
  7389.  
  7390.  
  7391. ΓòÉΓòÉΓòÉ 449. This is not a valid parameter. ΓòÉΓòÉΓòÉ
  7392.  
  7393. ERROR: You have entered a parameter that is neither a Catalog name nor the name 
  7394. of a displayable image. (The parameter is provided in the error window.) 
  7395.  
  7396. CAUSE: Possible causes are: 
  7397.  
  7398. o The image name or Catalog name was spelled incorrectly. 
  7399. o The image name entered is not a displayable image. 
  7400. o The extension ".CLS" was not specified for the Catalog name. 
  7401.  
  7402. ACTION: Try one of the following: 
  7403.  
  7404. o Reinvoke the Image Classifier with a correct image name and/or Catalog name. 
  7405. o To display an image, select the "Image - Open" menu item from the Image 
  7406.   Classifier menu bar. 
  7407. o To select a Catalog, select the "Catalog - New" or "Catalog - Open" menu item 
  7408.   from the Image Classifier menu bar. 
  7409.  
  7410.  
  7411. ΓòÉΓòÉΓòÉ 450. No Catalog is loaded. ΓòÉΓòÉΓòÉ
  7412.  
  7413. ERROR: There is no Catalog currently loaded.  A Catalog must be loade for the 
  7414. Image Classifier to continue. 
  7415.  
  7416. CAUSE: Possible causes are: 
  7417.  
  7418. o The creation of the new Catalog is not completed. 
  7419.  
  7420. ACTION: Try one of the following: 
  7421.  
  7422. o To create a new Catalog, select the "Catalog - New" menu item from the Image 
  7423.   Classifier menu bar. 
  7424. o To open an existing Catalog, select the "Catalog - Open" menu item from the 
  7425.   Image Classifier menu bar. 
  7426. o Reinvoke the Image Classifier with a valid Catalog name. 
  7427.  
  7428.  
  7429. ΓòÉΓòÉΓòÉ 451. The drag information could not be accessed. ΓòÉΓòÉΓòÉ
  7430.  
  7431. ERROR: An error occured accessing a DRAGINFO structure required for a 
  7432. successful drag/drop. 
  7433.  
  7434. CAUSE: Possible causes are: 
  7435.  
  7436. o The memory block required for the drag/drop was not allocated properly. 
  7437.  
  7438. ACTION: Try one of the following: 
  7439.  
  7440. o Close any windows that are not needed. 
  7441. o Close all applications not being used. 
  7442. o Archive any large or infrequently used files or delete any unnecessary files 
  7443.   on the disk. where the SWAPPER.DAT file exists. 
  7444. o Rerun the program. 
  7445.  
  7446.  
  7447. ΓòÉΓòÉΓòÉ 452. Wrong RMF. ΓòÉΓòÉΓòÉ
  7448.  
  7449. ERROR: You are trying to drag an object, but the rendering mechanism and format 
  7450. are not supported for the dragged object. 
  7451.  
  7452. CAUSE: Possible causes are: 
  7453.  
  7454. o You dragged an unsupported object. 
  7455.  
  7456. ACTION: Try one of the following: 
  7457.  
  7458. o Select a supported object and drag again. 
  7459.  
  7460.  
  7461. ΓòÉΓòÉΓòÉ 453. An area has not been selected. ΓòÉΓòÉΓòÉ
  7462.  
  7463. ERROR: An area must be selected or masked before adding to the Catalog or 
  7464. dragging/dropping to a sampler. 
  7465.  
  7466. CAUSE: Possible causes are: 
  7467.  
  7468. o The user presses the classiay button from the toolbox or selects the "Catalog 
  7469.   - Add area" menu item from the Image Classifier menu bar before an area has 
  7470.   been selected or masked. 
  7471. o The user attempts to drag/drop from the image to a sampler before an area has 
  7472.   been selected or masked. 
  7473.  
  7474. ACTION: Try one of the following: 
  7475.  
  7476. o Use the select or mask tools to select an area before you add it to the 
  7477.   Catalog or drag/drop to a sampler. 
  7478. o If the whole image is to be added to the Catalog or drag/dropped to a 
  7479.   sampler, select the "Edit - Select all" menu item from the Image Classifier 
  7480.   menu bar. 
  7481.  
  7482.  
  7483. ΓòÉΓòÉΓòÉ 454. The thumbnail was not created. ΓòÉΓòÉΓòÉ
  7484.  
  7485. ERROR: An error occured while the thumbnail file and mask files were eing 
  7486. created. 
  7487.  
  7488. CAUSE: Possible causes are: 
  7489.  
  7490. o The application required more storage than was currently available. 
  7491. o An internal processing error occured. 
  7492. o A unique thumbnail name could not be generated. 
  7493.  
  7494. ACTION: Try one of the following: 
  7495.  
  7496. o If this message was preceded by a memory allocation error, do the following: 
  7497.  
  7498.    - Close any windows that are not needed. 
  7499.  
  7500.    - Close all applications not being used. 
  7501.  
  7502.    - Archive any large or infrequently used files or delete any unnecessary 
  7503.      files on the disk where the SWAPPER.DAT file exists. 
  7504.  
  7505.    - Rerun the program. 
  7506.  
  7507. o If this message was preceded by a message indicating a thumbnail name could 
  7508.   not be generated, do the following: 
  7509.  
  7510.    - Retry the operation using another Catalog. 
  7511.  
  7512.    - Retry the operation using another Image. 
  7513.  
  7514. o If any other message preceded this message, retry the same operation. 
  7515.  
  7516.  
  7517. ΓòÉΓòÉΓòÉ 455. Unable to load Image Analyzer program. ΓòÉΓòÉΓòÉ
  7518.  
  7519. ERROR: You are trying to do the Analyze function from the Image Classifier, but 
  7520. the Image Analyzer program can not be loaded. 
  7521.  
  7522. CAUSE: Possible causes are: 
  7523.  
  7524. o The Image Analyzer program does not exist. 
  7525. o The Image Analyzer program has been renamed. 
  7526. o The Image Analyzer program is in a directory which is not in the correct 
  7527.   path. 
  7528.  
  7529. ACTION: Try one of the following: 
  7530.  
  7531. o Reinstall Ultimedia Manager/2 if the Image Analyzer program does not exist. 
  7532. o Rename the Image Analyzer program back to the correct name. 
  7533. o Include the directory where the Image Analyzer program resides in the PATH 
  7534.   statement and reboot the system. 
  7535.  
  7536.  
  7537. ΓòÉΓòÉΓòÉ 456. Drag/Drop error: Cannot end data transfer. ΓòÉΓòÉΓòÉ
  7538.  
  7539. ERROR: You are trying to drag an object using the Image Classifier but an error 
  7540. stopped the process. 
  7541.  
  7542. CAUSE: Shared memory is not available. 
  7543.  
  7544. ACTION: Try one of the following: 
  7545.  
  7546. o Try the same drag and drop again. 
  7547. o Shutdown OS/2 and restart the system, then try the same drag and drop again. 
  7548. o If the symptom persists, call your administrator. 
  7549.  
  7550.  
  7551. ΓòÉΓòÉΓòÉ 457. Unable to calculate the masked area correctly. ΓòÉΓòÉΓòÉ
  7552.  
  7553. ERROR: An unknown error occured calculating the coordinates of the area. 
  7554.  
  7555. CAUSE: Possible causes are: 
  7556.  
  7557. o Internal error. 
  7558.  
  7559. ACTION: Try one of the following: 
  7560.  
  7561. o Remove the currently defined area from the image and recreate a new one. 
  7562.  
  7563.  
  7564. ΓòÉΓòÉΓòÉ 458. Could not calculate the selected or masked area ΓòÉΓòÉΓòÉ
  7565.  
  7566. ERROR: An error occured attempting to find the rectangular area surrounding the 
  7567. defined area. 
  7568.  
  7569. CAUSE: Possible causes are: 
  7570.  
  7571. o A memory allocation error occured (if this is the case, a memory allocation 
  7572.   error would have preceded this error message). 
  7573. o Internal error. 
  7574.  
  7575. ACTION: Try one of the following: 
  7576.  
  7577. o If this message was preceded with a memory allocation error message, follow 
  7578.   the suggested actions for that message. 
  7579. o Remove the currently defined area from the image and recreate a new one. 
  7580.  
  7581.  
  7582. ΓòÉΓòÉΓòÉ 459. Could not generate a thumbnail name ΓòÉΓòÉΓòÉ
  7583.  
  7584. ERROR: A unique thumbnail name could not be generated for the area on the image 
  7585. displayed. 
  7586.  
  7587. CAUSE: Possible causes are: 
  7588.  
  7589. o More than 99 sub-areas have been selected from this particular image within 
  7590.   the same Catalog. 
  7591. o A memory allocation error occured. 
  7592.  
  7593. ACTION: Try one of the following: 
  7594.  
  7595. o Retry the operation using another Catalog. 
  7596. o Retry the operation using another Image. 
  7597. o Close any windows that are not needed. 
  7598. o Close all applications not being used. 
  7599. o Archive any large or infrequently used files or delete any unnecessary files 
  7600.   on the disk where the SWAPPER.DAT file exists. 
  7601.  
  7602.  
  7603. ΓòÉΓòÉΓòÉ 460. Drag/Drop - Could not open mask file ΓòÉΓòÉΓòÉ
  7604.  
  7605. ERROR: An error occurred while the program is trying to open the mask file. 
  7606.  
  7607. CAUSE: Possible causes are: 
  7608.  
  7609. o The file name does not exist. 
  7610. o The file name is supplied incorrectly 
  7611. o The file is locked by other users. 
  7612.  
  7613. ACTION: Try one of the following: 
  7614.  
  7615. o Restore the file if it does not exist. 
  7616. o Supply the correct file name and try again. 
  7617.  
  7618.  
  7619. ΓòÉΓòÉΓòÉ 461. Database could not be updated ΓòÉΓòÉΓòÉ
  7620.  
  7621. ERROR: An error occurred while the program is trying to update the database. 
  7622.  
  7623. CAUSE: Possible causes are: 
  7624.  
  7625. o The database table does not exist. 
  7626. o The database table is corrupted. 
  7627. o Logon information supplied is incorrect. 
  7628. o A memory allocation error. 
  7629. o An internal processing error occured. 
  7630.  
  7631. ACTION: Try one of the following: 
  7632.  
  7633. o Supply the correct logon information and try again. 
  7634. o Verify that your system meets the minimum requirements for the product. 
  7635. o Close unneeded applications or window. 
  7636. o Shutdown OS/2 and restart the system, then try the same operation again. 
  7637. o If the symptom persists, call your service representative. 
  7638.  
  7639.  
  7640. ΓòÉΓòÉΓòÉ 462. Scheme object count could not be updated ΓòÉΓòÉΓòÉ
  7641.  
  7642. ERROR: An error occurred while the program is trying to update the object count 
  7643. of the Catalog. 
  7644.  
  7645. CAUSE: Possible causes are: 
  7646.  
  7647. o The Catalog is locked by other use. 
  7648. o An internal error. 
  7649.  
  7650. ACTION: Try one of the following: 
  7651.  
  7652. o Release other use of the Catalog, and try again. 
  7653. o Shut down OS/2 and reboot the system, then try again. 
  7654. o If the symptom persists, call your service representative. 
  7655.  
  7656.  
  7657. ΓòÉΓòÉΓòÉ 463. SQL Error ΓòÉΓòÉΓòÉ
  7658.  
  7659. ERROR: The program encountered a SQL error. (The error information is provided 
  7660. in the error window.) 
  7661.  
  7662. CAUSE: Possible causes are: 
  7663.  
  7664. o The database table is corrupted. 
  7665. o The logon information is incorrect. 
  7666.  
  7667. ACTION: Try one of the following: 
  7668.  
  7669. o Check the error information and correct it accordingly. 
  7670.  
  7671.  
  7672. ΓòÉΓòÉΓòÉ 464. Error deleting file. ΓòÉΓòÉΓòÉ
  7673.  
  7674. ERROR: An error occurred while deleting the file. (The file name is provided in 
  7675. the error window.) 
  7676.  
  7677. CAUSE: Possible causes are: 
  7678.  
  7679. o The file is used by other programs. 
  7680.  
  7681. ACTION: Try one of the following: 
  7682.  
  7683. o Close other use of the file and try again. 
  7684.  
  7685.  
  7686. ΓòÉΓòÉΓòÉ 465. Catalog already exists and cannot be created. ΓòÉΓòÉΓòÉ
  7687.  
  7688. ERROR: You are trying to create a new Catalog, but the Catalog name you 
  7689. specified already exists. 
  7690.  
  7691. CAUSE: Possible causes are: 
  7692.  
  7693. o You misspelled the Catalog name. 
  7694. o You are trying to open an existing Catalog, but didn't choose the correct 
  7695.   menu option. 
  7696.  
  7697. ACTION: Try one of the following: 
  7698.  
  7699. o Correct the Catalog name and try again. 
  7700. o Select "Catalog - Open" to open the existing Catalog. 
  7701.  
  7702.  
  7703. ΓòÉΓòÉΓòÉ 466. A Catalog has already been specified as a parameter. ΓòÉΓòÉΓòÉ
  7704.  
  7705. ERROR: You specified two or more Catalog names as parameters for Image 
  7706. Classifier. 
  7707.  
  7708. CAUSE: Possible causes are: 
  7709.  
  7710. o You entereded too many Catalog names. 
  7711.  
  7712. ACTION: Try one of the following: 
  7713.  
  7714. o Continue the program using the first Catalog name supplied. 
  7715. o Reinvoke the program with correct parameters. 
  7716.  
  7717.  
  7718. ΓòÉΓòÉΓòÉ 467. Parameters following the second parameter are ignored. ΓòÉΓòÉΓòÉ
  7719.  
  7720. ERROR: You entered more than two parameters for Image Classifier. 
  7721.  
  7722. CAUSE: Possible causes are: 
  7723.  
  7724. o You entered too many parameters. 
  7725.  
  7726. ACTION: Try one of the following: 
  7727.  
  7728. o Continue the program using the first two parameters supplied. 
  7729. o Reinvoke the program with correct parameters. 
  7730.  
  7731.  
  7732. ΓòÉΓòÉΓòÉ 468. DB Error ΓòÉΓòÉΓòÉ
  7733.  
  7734. ERROR: The program is trying to access the database but an error stopped the 
  7735. process. (The error codeis provided in the error window.) 
  7736.  
  7737. CAUSE: Possible causes are: 
  7738.  
  7739. o Another instance of this database table is already in use. 
  7740. o A memory allocation error. 
  7741.  
  7742. ACTION: Try one of the following: 
  7743.  
  7744. o Close any other session associated with this database table. 
  7745. o Shutdown OS/2 and restart the system. 
  7746. o If the symptom persists, call your service representative. 
  7747.  
  7748.  
  7749. ΓòÉΓòÉΓòÉ 469. The Catalog does not exist. ΓòÉΓòÉΓòÉ
  7750.  
  7751. ERROR: You are trying the open the Catalog, but the Catalog does not exist. 
  7752. (The Catalog name is provided in the error window.) 
  7753.  
  7754. CAUSE: Possible causes are: 
  7755.  
  7756. o You misspelled the Catalog name. 
  7757. o The Catalog does not exist. 
  7758.  
  7759. ACTION: Try one of the following: 
  7760.  
  7761. o Click 'OK' to create the Catalog. 
  7762. o Click 'Cancel' to exit the open catalog function. 
  7763.  
  7764.  
  7765. ΓòÉΓòÉΓòÉ 470. The default Catalog does not exist.  One will be created. ΓòÉΓòÉΓòÉ
  7766.  
  7767. ERROR: You are trying to bring up the program using default Catalog, but the 
  7768. default Catalog does not exist. (The default Catalog name is provided in the 
  7769. error window.) 
  7770.  
  7771. CAUSE: Possible causes are: 
  7772.  
  7773. o The default Catalog has been deleted. 
  7774. o The default Catalog has been renamed. 
  7775.  
  7776. ACTION: Try one of the following: 
  7777.  
  7778. o Click 'OK' to create the default Catalog. 
  7779. o Click 'Cancel' to respecify the Catalog name. 
  7780.  
  7781.  
  7782. ΓòÉΓòÉΓòÉ 471. No Catalog name was specified. ΓòÉΓòÉΓòÉ
  7783.  
  7784. ERROR: You are trying to create a new Catalog or open an existing Catalog, but 
  7785. the Catalog name is not specified. 
  7786.  
  7787. CAUSE: Possible causes are: 
  7788.  
  7789. o You did not enter the Catalog name. 
  7790.  
  7791. ACTION: Try one of the following: 
  7792.  
  7793. o Enter the Catalog name in the enty field. 
  7794. o Select the Catalog from the New/Open Catalog dialog. 
  7795.  
  7796.  
  7797. ΓòÉΓòÉΓòÉ 472. Using default Catalog name extension CLS. ΓòÉΓòÉΓòÉ
  7798.  
  7799. ERROR: The Catalog name specified does not have the correct extension CLS. 
  7800.  
  7801. CAUSE: Possible causes are: 
  7802.  
  7803. o You specified the Catalog name without extension. 
  7804. o You specified the Catalog name with invalid extension. 
  7805.  
  7806. ACTION: Try one of the following: 
  7807.  
  7808. o Reenter the Catalog name. 
  7809. o Accept the default extension CLS. 
  7810.  
  7811.  
  7812. ΓòÉΓòÉΓòÉ 473. The Catalog will not be created. ΓòÉΓòÉΓòÉ
  7813.  
  7814. ERROR: The program will not create the Catalog. (The Catalog name was provided 
  7815. in the error window.) 
  7816.  
  7817. CAUSE: Possible causes are: 
  7818.  
  7819.  
  7820. ACTION: Try one of the following: 
  7821.  
  7822.  
  7823.  
  7824. ΓòÉΓòÉΓòÉ 474. The mask is too large to display on this image. ΓòÉΓòÉΓòÉ
  7825.  
  7826. ERROR: The area selected for redisplay is too large for the image which it is 
  7827. to be displayed upon. 
  7828.  
  7829. CAUSE: Possible causes are: 
  7830.  
  7831. o An area was created from one image and an attempt was made to display it upon 
  7832.   a smaller image. 
  7833.  
  7834. ACTION: Try one of the following: 
  7835.  
  7836. o Redisplay the area upon a large image. 
  7837. o Select a smaller area to redisplay. 
  7838.  
  7839.  
  7840. ΓòÉΓòÉΓòÉ 475. The named shared memory already exists ΓòÉΓòÉΓòÉ
  7841.  
  7842. ERROR: The program is trying to allocate the shared memory but the named shared 
  7843. memory already exists. 
  7844.  
  7845. CAUSE: Possible causes are: 
  7846.  
  7847. o An internal error. 
  7848.  
  7849. ACTION: Try one of the following: 
  7850.  
  7851. o Shut down and reboot the system, and try again. 
  7852. o If the symptom persists, call your service representative. 
  7853.  
  7854.  
  7855. ΓòÉΓòÉΓòÉ 476. An error occurred outlining the area. ΓòÉΓòÉΓòÉ
  7856.  
  7857. ERROR: An error occurred while outlining the area. 
  7858.  
  7859. CAUSE: Possible causes are: 
  7860.  
  7861. o An internal error. 
  7862.  
  7863. ACTION: Try one of the following: 
  7864.  
  7865. o Shut down and reboot the system, and try again. 
  7866. o If the symptom persists, call your service representative. 
  7867.  
  7868.  
  7869. ΓòÉΓòÉΓòÉ 477. An error occured writing the image thumbnail to a file ΓòÉΓòÉΓòÉ
  7870.  
  7871. ERROR: An error occured while writing the image thumbnail to a file. 
  7872.  
  7873. CAUSE: Possible causes are: 
  7874.  
  7875. o The application required more storage than was currently available. 
  7876. o An internal processing error occured. 
  7877.  
  7878. ACTION: Try one of the following: 
  7879.  
  7880. o Close unneeded applications or windows. 
  7881. o Shutdown OS/2 and restart the system. 
  7882. o If the symptom persists, call the service representative. 
  7883.  
  7884.  
  7885. ΓòÉΓòÉΓòÉ 478. Removing the feature will result in all data being deleted. ΓòÉΓòÉΓòÉ
  7886.  
  7887. ERROR: You are changing the settings of the Catalog by removing feature(s) from 
  7888. it.  A warning message is displayed to warn you about the consequences. (The 
  7889. features you are trying to delete is provided in the warning window.) 
  7890.  
  7891. CAUSE: Possible causes are: 
  7892.  
  7893. o You understand the consequences of removing the feature and wish to continue. 
  7894. o You didn't know the consequences of the changes you are making and this is 
  7895.   the time to cancel it. 
  7896.  
  7897. ACTION: Try one of the following: 
  7898.  
  7899. o Press OK to proceed the changes you want to make. 
  7900. o Press Cancel to discard the change. 
  7901.  
  7902.  
  7903. ΓòÉΓòÉΓòÉ 479. Error accessing the specified drive or directory. ΓòÉΓòÉΓòÉ
  7904.  
  7905. ERROR: You are trying to access the specified drive or directory, but an error 
  7906. stopped the process. 
  7907.  
  7908. CAUSE: Possible causes are: 
  7909.  
  7910. o The specified drive or directory is not available. 
  7911.  
  7912. ACTION: Try one of the following: 
  7913.  
  7914. o Reconnect the unavailable drive and try again.  . 
  7915.  
  7916.  
  7917. ΓòÉΓòÉΓòÉ 480. Error reading Catalog's control file. ΓòÉΓòÉΓòÉ
  7918.  
  7919. ERROR: An error occurred while the program is trying to read the Catalog's 
  7920. control file. 
  7921.  
  7922. CAUSE: Possible causes are: 
  7923.  
  7924. o You specified a wrong name for Catalog. 
  7925. o You opened a Catalog which does not have a control file. 
  7926. o The control file is corrupted. 
  7927.  
  7928. ACTION: Try one of the following: 
  7929.  
  7930. o Open another Catalog. 
  7931. o Regenerate the control file and try again. 
  7932.  
  7933.  
  7934. ΓòÉΓòÉΓòÉ 481. Server name required for Oracle Catalog. ΓòÉΓòÉΓòÉ
  7935.  
  7936. ERROR: You are trying to create a Catalog with Oracle database type, but you 
  7937. did not specify the server name required. 
  7938.  
  7939. CAUSE: Possible causes are: 
  7940.  
  7941. o You did not enter the required server name. 
  7942.  
  7943. ACTION: Try one of the following: 
  7944.  
  7945. o Enter the server name and try again. 
  7946.  
  7947.  
  7948. ΓòÉΓòÉΓòÉ 482. ULTITOOL.INI file is invalid. ΓòÉΓòÉΓòÉ
  7949.  
  7950. ERROR: The program is trying to save the state information to the ULTITOOL.INI 
  7951. file, but the file is invalid. 
  7952.  
  7953. CAUSE: Possible causes are: 
  7954.  
  7955. o The ULTITOOL.INI file is corrupted. 
  7956. o The ULTITOOL.INI file has invalid format. 
  7957.  
  7958. ACTION: Try one of the following: 
  7959.  
  7960. o Delete the invalid the ULTITOOL.INI and try again. 
  7961.  
  7962.  
  7963. ΓòÉΓòÉΓòÉ 483. Category not defined in the sampler. ΓòÉΓòÉΓòÉ
  7964.  
  7965. ERROR: You specified a category for an area in the Catalog, but the category 
  7966. has not been defined in the category sampler. 
  7967.  
  7968. CAUSE: Possible causes are: 
  7969.  
  7970. o You specified the category name incorrectly. 
  7971. o You have not define the new category in the category sampler. 
  7972.  
  7973. ACTION: Try one of the following: 
  7974.  
  7975. o Correct the category if it is incorrect. 
  7976. o Define the new category sampler for later query. 
  7977.  
  7978.  
  7979. ΓòÉΓòÉΓòÉ 484. No areas classified for the image displayed. ΓòÉΓòÉΓòÉ
  7980.  
  7981. ERROR: You are trying to display the areas of the image, but no areas were 
  7982. calssified for the image. 
  7983.  
  7984. CAUSE: Possible causes are: 
  7985.  
  7986. o You have not added any area of the image to the Catalog. 
  7987.  
  7988. ACTION: Try one of the following: 
  7989.  
  7990. o Add areas of the image to the Catalog and then display the areas. 
  7991. o Load other images and then display the areas. 
  7992.  
  7993.  
  7994. ΓòÉΓòÉΓòÉ 485. Category name changed. Update areas with new name? ΓòÉΓòÉΓòÉ
  7995.  
  7996. ERROR: You have changed the category name, and there are areas defined in the 
  7997. Catalog with this category name. 
  7998.  
  7999. CAUSE: The program asks for updating the changed category name in the Catalog. 
  8000.  
  8001. ACTION: Try one of the following: 
  8002.  
  8003. o Click on 'Yes' to update the category name in the Catalog. 
  8004. o Click on 'No' to not update the category name in the Catalog. 
  8005.  
  8006.  
  8007. ΓòÉΓòÉΓòÉ 486. Error accessing control information for Catalog. ΓòÉΓòÉΓòÉ
  8008.  
  8009. area. 
  8010.  
  8011. ERROR: An error occurred while the program is trying to access the control 
  8012. information for the Catalog. (The Catalog name is provided in the error window) 
  8013.  
  8014. CAUSE: Possible causes are: 
  8015.  
  8016. o The control file is corrupted. 
  8017. o The control file is missing. 
  8018. o An internal processing error occured. 
  8019.  
  8020. ACTION: Try one of the following: 
  8021.  
  8022. o Reconstruct the control file and try again. 
  8023. o If the symptom persists, call your service representative. 
  8024.  
  8025.  
  8026. ΓòÉΓòÉΓòÉ 487. BIC is cleaning up database tables. ΓòÉΓòÉΓòÉ
  8027.  
  8028. area. 
  8029.  
  8030. ERROR: The program is cleaning up the database tables and updating the Catalog 
  8031. control information. 
  8032.  
  8033. CAUSE: The program acknowledge the user about the progress of cleaning up 
  8034. database tables and updating Catalog control information. 
  8035.  
  8036. ACTION: Try one of the following: 
  8037.  
  8038. o Wait for the process to finish. 
  8039.  
  8040.  
  8041. ΓòÉΓòÉΓòÉ 488. BIC: image name is missing. ΓòÉΓòÉΓòÉ
  8042.  
  8043. ERROR: The program is expecting an image name as a parameter. (The correct 
  8044. syntax for invoking the program is provided in the error window.) 
  8045.  
  8046. CAUSE: Possible causes are: 
  8047.  
  8048. o You did not supply the image name. 
  8049.  
  8050. ACTION: Try one of the following: 
  8051.  
  8052. o Reinvoke the program with the correct syntax. 
  8053.  
  8054.  
  8055. ΓòÉΓòÉΓòÉ 489. BIC: directory name is missing. ΓòÉΓòÉΓòÉ
  8056.  
  8057. ERROR: The program is expecting a directory name as a parameter. (The correct 
  8058. syntax for invoking the program is provided in the error window.) 
  8059.  
  8060. CAUSE: Possible causes are: 
  8061.  
  8062. o You did not supply the directory name. 
  8063.  
  8064. ACTION: Try one of the following: 
  8065.  
  8066. o Reinvoke the program with the correct syntax. 
  8067.  
  8068.  
  8069. ΓòÉΓòÉΓòÉ 490. BIC: list of files name is missing ΓòÉΓòÉΓòÉ
  8070.  
  8071. ERROR: The program is expecting a list of image names as parameters. (The 
  8072. correct syntax for invoking the program is provided in the error window.) 
  8073.  
  8074. CAUSE: Possible causes are: 
  8075.  
  8076. o You did not supply the list of image names. 
  8077.  
  8078. ACTION: Try one of the following: 
  8079.  
  8080. o Reinvoke the program with the correct syntax. 
  8081.  
  8082.  
  8083. ΓòÉΓòÉΓòÉ 491. BIC: mask name is missing. ΓòÉΓòÉΓòÉ
  8084.  
  8085. ERROR: The program is expecting a mask name as a parameter. (The correct syntax 
  8086. for invoking the program is provided in the error window.) 
  8087.  
  8088. CAUSE: Possible causes are: 
  8089.  
  8090. o You did not supply the maks name. 
  8091.  
  8092. ACTION: Try one of the following: 
  8093.  
  8094. o Reinvoke the program with the correct syntax. 
  8095.  
  8096.  
  8097. ΓòÉΓòÉΓòÉ 492. BIC: Catalog name is missing. ΓòÉΓòÉΓòÉ
  8098.  
  8099. ERROR: The program is expecting a Catalog name as a parameter. (The correct 
  8100. syntax for invoking the program is provided in the error window.) 
  8101.  
  8102. CAUSE: Possible causes are: 
  8103.  
  8104. o You did not supply the Catalog name. 
  8105.  
  8106. ACTION: Try one of the following: 
  8107.  
  8108. o Reinvoke the program with the correct syntax. 
  8109.  
  8110.  
  8111. ΓòÉΓòÉΓòÉ 493. Image name does not exist. ΓòÉΓòÉΓòÉ
  8112.  
  8113. ERROR: You supply an image name as a parameter to the program, but the image 
  8114. name does not exist. (The image name is provided in the error window.) 
  8115.  
  8116. CAUSE: Possible causes are: 
  8117.  
  8118. o The image name does not exist. 
  8119. o You entered the image name incorrectly. 
  8120.  
  8121. ACTION: Try one of the following: 
  8122.  
  8123. o Reinvoke the program with the correct image name. 
  8124.  
  8125.  
  8126. ΓòÉΓòÉΓòÉ 494. List file name does not exist. ΓòÉΓòÉΓòÉ
  8127.  
  8128. ERROR: You supply a list of file names as parameters to the program, but the 
  8129. file name does not exist. (The list of file names is provided in the error 
  8130. window.) 
  8131.  
  8132. CAUSE: Possible causes are: 
  8133.  
  8134. o The list of file names do not exist. 
  8135. o You entered the list incorrectly. 
  8136.  
  8137. ACTION: Try one of the following: 
  8138.  
  8139. o Reinvoke the program with the correct list file name. 
  8140.  
  8141.  
  8142. ΓòÉΓòÉΓòÉ 495. Error creating control data for classified area. ΓòÉΓòÉΓòÉ
  8143.  
  8144. area. 
  8145.  
  8146. ERROR: An error occurred while the program is trying to create the control data 
  8147. for the classified area of the image file. (The image file name is provided in 
  8148. the error window) 
  8149.  
  8150. CAUSE: Possible causes are: 
  8151.  
  8152. o The application required more storage than was currently available 
  8153. o An internal processing error occured. 
  8154.  
  8155. ACTION: Try one of the following: 
  8156.  
  8157. o Close any unneeded windows or application to free the space. 
  8158. o If the symptom persists, call your service representative. 
  8159.  
  8160.  
  8161. ΓòÉΓòÉΓòÉ 496. Error creating control data for classified area. ΓòÉΓòÉΓòÉ
  8162.  
  8163. area. 
  8164.  
  8165. ERROR: An error occurred while the program is trying to create the control data 
  8166. for the classified area of the image file. (The image file name is provided in 
  8167. the error window) 
  8168.  
  8169. CAUSE: Possible causes are: 
  8170.  
  8171. o The application required more storage than was currently available 
  8172. o An internal processing error occured. 
  8173.  
  8174. ACTION: Try one of the following: 
  8175.  
  8176. o Close any unneeded windows or application to free the space. 
  8177. o If the symptom persists, call your service representative. 
  8178.  
  8179.  
  8180. ΓòÉΓòÉΓòÉ 497. Error creating control data for classified area. ΓòÉΓòÉΓòÉ
  8181.  
  8182. area. 
  8183.  
  8184. ERROR: An error occurred while the program is trying to create the control data 
  8185. for the classified area of the image file. (The image file name is provided in 
  8186. the error window) 
  8187.  
  8188. CAUSE: Possible causes are: 
  8189.  
  8190. o The application required more storage than was currently available 
  8191. o An internal processing error occured. 
  8192.  
  8193. ACTION: Try one of the following: 
  8194.  
  8195. o Close any unneeded windows or application to free the space. 
  8196. o If the symptom persists, call your service representative. 
  8197.  
  8198.  
  8199. ΓòÉΓòÉΓòÉ 498. BIC: Directory is empty. ΓòÉΓòÉΓòÉ
  8200.  
  8201. ERROR: You supply a directory name as a parameter to the program, but the 
  8202. directory is empty. (The directory name is provided in the error window.) 
  8203.  
  8204. CAUSE: Possible causes are: 
  8205.  
  8206. o You misspelled the directory name. 
  8207. o You have not copied image files to the directory for classification. 
  8208.  
  8209. ACTION: Try one of the following: 
  8210.  
  8211. o Reinvoke the program with another directory name. 
  8212.  
  8213.  
  8214. ΓòÉΓòÉΓòÉ 499. BIC: List file is empty. ΓòÉΓòÉΓòÉ
  8215.  
  8216. ERROR: You supply a list of file names as a parameter to the program, but the 
  8217. list is empty. (The list file is provided in the error window.) 
  8218.  
  8219. CAUSE: Possible causes are: 
  8220.  
  8221. o You misspelled the list file name. 
  8222.  
  8223. ACTION: Try one of the following: 
  8224.  
  8225. o Reinvoke the program with another list file name. 
  8226.  
  8227.  
  8228. ΓòÉΓòÉΓòÉ 500. There is no image selected. ΓòÉΓòÉΓòÉ
  8229.  
  8230. ERROR: The program expects to process images for batch classification, but no 
  8231. image is selected. 
  8232.  
  8233. CAUSE: Possible causes are: 
  8234.  
  8235. o You did not select any image. 
  8236.  
  8237. ACTION: Try one of the following: 
  8238.  
  8239. o Select the image file and try again. 
  8240.  
  8241.  
  8242. ΓòÉΓòÉΓòÉ 501. BIC: could not find image name. ΓòÉΓòÉΓòÉ
  8243.  
  8244. ERROR: You supply an image name as a parameter to the program, but the image 
  8245. name does not exist. (The image name is provided in the error window.) 
  8246.  
  8247. CAUSE: Possible causes are: 
  8248.  
  8249. o The image name does not exist. 
  8250. o You entered the image name incorrectly. 
  8251.  
  8252. ACTION: Try one of the following: 
  8253.  
  8254. o Reinvoke the program with the correct image name. 
  8255.  
  8256.  
  8257. ΓòÉΓòÉΓòÉ 502. BIC: could not find directory name. ΓòÉΓòÉΓòÉ
  8258.  
  8259. ERROR: You supply a directory name as a parameter to the program, but the 
  8260. directory name does not exist. (The directory name is provided in the error 
  8261. window.) 
  8262.  
  8263. CAUSE: Possible causes are: 
  8264.  
  8265. o The directory name does not exist. 
  8266. o You entered the directory name incorrectly. 
  8267.  
  8268. ACTION: Try one of the following: 
  8269.  
  8270. o Reinvoke the program with the correct directory name. 
  8271.  
  8272.  
  8273. ΓòÉΓòÉΓòÉ 503. BIC: could not find listfile name. ΓòÉΓòÉΓòÉ
  8274.  
  8275. ERROR: You supply a list of file names as parameters to the program, but the 
  8276. list of file names does not exist. (The list of file names is provided in the 
  8277. error window.) 
  8278.  
  8279. CAUSE: Possible causes are: 
  8280.  
  8281. o The list of file names does not exist. 
  8282. o You entered the list of file names incorrectly. 
  8283.  
  8284. ACTION: Try one of the following: 
  8285.  
  8286. o Reinvoke the program with the correct list of file names. 
  8287.  
  8288.  
  8289. ΓòÉΓòÉΓòÉ 504. BIC: could not find mask name. ΓòÉΓòÉΓòÉ
  8290.  
  8291. ERROR: You supply a mask name as a parameter to the program, but the mask name 
  8292. does not exist. (The mask name is provided in the error window.) 
  8293.  
  8294. CAUSE: Possible causes are: 
  8295.  
  8296. o The mask name does not exist. 
  8297. o You entered the mask name incorrectly. 
  8298.  
  8299. ACTION: Try one of the following: 
  8300.  
  8301. o Reinvoke the program with the correct mask name. 
  8302.  
  8303.  
  8304. ΓòÉΓòÉΓòÉ 505. BIC: could not find Catalog name. ΓòÉΓòÉΓòÉ
  8305.  
  8306. ERROR: You supply a Catalog name as a parameter to the program, but the Catalog 
  8307. name does not exist. (The Catalog name is provided in the error window.) 
  8308.  
  8309. CAUSE: Possible causes are: 
  8310.  
  8311. o The Catalog name does not exist. 
  8312. o You entered the Catalog name incorrectly. 
  8313.  
  8314. ACTION: Try one of the following: 
  8315.  
  8316. o Reinvoke the program with the correct Catalog name. 
  8317.  
  8318.  
  8319. ΓòÉΓòÉΓòÉ 506. Catalog creation error: database can't be connected by ΓòÉΓòÉΓòÉ
  8320.  
  8321. user. 
  8322.  
  8323. ERROR: You are trying to create a Catalog, but the database can not be 
  8324. connected by the specified user. (The database name and UserID are provided in 
  8325. the error window) 
  8326.  
  8327. CAUSE: Possible causes are: 
  8328.  
  8329. o The database has already be used by other user. 
  8330.  
  8331. ACTION: Try one of the following: 
  8332.  
  8333. o Release other use of the database and try again. 
  8334.  
  8335.  
  8336. ΓòÉΓòÉΓòÉ 507. Catalog creation error: database has already been used ΓòÉΓòÉΓòÉ
  8337.  
  8338. by other Catalog. 
  8339.  
  8340. ERROR: Database has already been used by another Catalog. (The database name 
  8341. and Catalog name are provided in the error window) 
  8342.  
  8343. CAUSE: Possible causes are: 
  8344.  
  8345.  
  8346. ACTION: Try one of the following: 
  8347.  
  8348.  
  8349.  
  8350. ΓòÉΓòÉΓòÉ 508. Catalog creation error: userid specified cannot be logged ΓòÉΓòÉΓòÉ
  8351.  
  8352. on. 
  8353.  
  8354. ERROR: Userid cannot be logged on. (The userid is provided in the error window) 
  8355.  
  8356. CAUSE: Possible causes are: 
  8357.  
  8358. o The userid supplied in invalid. 
  8359.  
  8360. ACTION: Try one of the following: 
  8361.  
  8362. o Supply a valid userid. 
  8363.  
  8364.  
  8365. ΓòÉΓòÉΓòÉ 509. Catalog creation error: userid has already been used by ΓòÉΓòÉΓòÉ
  8366.  
  8367. other Catalog. 
  8368.  
  8369. ERROR: Userid has already been used by other Catalog. (The userid and Catalog 
  8370. name are provided in the error window) 
  8371.  
  8372. CAUSE: Possible causes are: 
  8373.  
  8374. o The userid supplied is used by other Catalog. 
  8375.  
  8376. ACTION: Try one of the following: 
  8377.  
  8378. o Release the userid used by other Catalog, and try again. 
  8379.  
  8380.  
  8381. ΓòÉΓòÉΓòÉ 510. Catalog creation error: can't create table. ΓòÉΓòÉΓòÉ
  8382.  
  8383. ERROR: Cannot create specified table(s). (The table name is provided in the 
  8384. error window) 
  8385.  
  8386. CAUSE: Possible causes are: 
  8387.  
  8388. o Not enough space. 
  8389. o Other unique internal error. 
  8390.  
  8391. ACTION: Try one of the following: 
  8392.  
  8393.  
  8394.  
  8395. ΓòÉΓòÉΓòÉ 511. Catalog creation error: can't create table in the database. ΓòÉΓòÉΓòÉ
  8396.  
  8397. ERROR: Cannot create database table for specified database. (The table name and 
  8398. database name are provided in the error window) 
  8399.  
  8400. CAUSE: Possible causes are: 
  8401.  
  8402.  
  8403. ACTION: Try one of the following: 
  8404.  
  8405.  
  8406.  
  8407. ΓòÉΓòÉΓòÉ 512. Error occurred attempting to save profile settings. ΓòÉΓòÉΓòÉ
  8408.  
  8409. ERROR: The program is trying to save the profile information to the 
  8410. ULTITOOL.INI file but an error occurred while saving the information. 
  8411.  
  8412. CAUSE: Possible causes are: 
  8413.  
  8414. o There may have been a system error when attempting to write to the file. 
  8415. o The ULTITOOL.INI file is corrupted. 
  8416. o The operating system could not find a read/write drive in the search path. 
  8417.  
  8418.   The search path is the: 
  8419.  
  8420.    - Current directory 
  8421.  
  8422.    - Directory where .EXE resides 
  8423.  
  8424.    - Path given in UMPATH environment variable 
  8425.  
  8426. ACTION: Try one of the following: 
  8427.  
  8428. o Delete the ULTITOOL.INI file and try again. 
  8429. o Set the current directory to a drive that can write data to disk. 
  8430. o Verify that the directory in the UMPATH variable specifies a drive that can 
  8431.   write data on a disk. 
  8432.  
  8433.  
  8434. ΓòÉΓòÉΓòÉ 513. File extension for query file must be '.iq'. ΓòÉΓòÉΓòÉ
  8435.  
  8436. ERROR: You are trying to save the query to a query file, but the query file 
  8437. name does not have a valid extension '.iq'. (The suggested query file name is 
  8438. provided in the error window) 
  8439.  
  8440. CAUSE: Possible causes are: 
  8441.  
  8442. o You specified the query file without extension. 
  8443. o You specified the query file with extension other than '.iq'. 
  8444.  
  8445. ACTION: Try one of the following: 
  8446.  
  8447. o Click on 'Yes' to save the query using the suggested query file name in the 
  8448.   error window. 
  8449. o Click on 'No' to not save the query. 
  8450. o Click on 'Cancel' to cancel the save operation. 
  8451.  
  8452.  
  8453. ΓòÉΓòÉΓòÉ 514. Can't start image browser. ΓòÉΓòÉΓòÉ
  8454.  
  8455. ERROR: You are trying to start the image browser, but the image file does not 
  8456. exist. (The image file name is provided in the error window.) 
  8457.  
  8458. CAUSE: Possible causes are: 
  8459.  
  8460. o The file has invalid format. 
  8461. o The file does not exist. 
  8462.  
  8463. ACTION: Try one of the following: 
  8464.  
  8465. o Restore the file and try again. 
  8466.  
  8467.  
  8468. ΓòÉΓòÉΓòÉ 515. Query file has invalid format or does not exist. ΓòÉΓòÉΓòÉ
  8469.  
  8470. ERROR: You are trying to open a query file, but the query file you specified is 
  8471. not correct. (The query file name is provided in the error window.) 
  8472.  
  8473. CAUSE: Possible causes are: 
  8474.  
  8475. o You misspelled the file name. 
  8476. o The file has invalid format. 
  8477. o The file does not exist. 
  8478.  
  8479. ACTION: Try one of the following: 
  8480.  
  8481. o Correct the file name. 
  8482. o Delete the query file, and reconstruct the query again. 
  8483.  
  8484.  
  8485. ΓòÉΓòÉΓòÉ 516. Query has been modified.  Save the query? ΓòÉΓòÉΓòÉ
  8486.  
  8487. ERROR: You tried to exit the Image Query program without saving the change to 
  8488. the query file. 
  8489.  
  8490. CAUSE: The program asks for confirmation before exiting the Image Query 
  8491. program. 
  8492.  
  8493. ACTION: Try one of the following: 
  8494.  
  8495. o Click on 'Yes' if you want to save the changes and then exit the Image Query 
  8496.   program. 
  8497. o Click on 'No' to exit the Image Query program without saving the changes. 
  8498. o Click on 'Cancel' to cancel the exit operation and return to the Image Query 
  8499.   program. 
  8500.  
  8501.  
  8502. ΓòÉΓòÉΓòÉ 517. Query has been cancelled.  See the result? ΓòÉΓòÉΓòÉ
  8503.  
  8504. ERROR: You cancelled the query process while the query is not complete. 
  8505.  
  8506. CAUSE: The program asks for partial display of the query results. 
  8507.  
  8508. ACTION: Try one of the following: 
  8509.  
  8510. o Click on 'Yes' if you want to see the query result. 
  8511. o Click on 'No' to exit the message box. 
  8512.  
  8513.  
  8514. ΓòÉΓòÉΓòÉ 518. File already exists.  Want to overwrite it? ΓòÉΓòÉΓòÉ
  8515.  
  8516. ERROR: You tried to save the current query to an existing query file. (Query 
  8517. file name is provided in the error window.) 
  8518.  
  8519. CAUSE: Possible causes are: 
  8520.  
  8521. o You do want to overwrite the existing query file. 
  8522. o You misspelled the file name. 
  8523.  
  8524. ACTION: Try one of the following: 
  8525.  
  8526. o Click on 'Yes' if you want to overwrite the existing query file. 
  8527. o Click on 'No' to reenter the query file name. 
  8528. o Click on 'Cancel' to cancel the save operation. 
  8529.  
  8530.  
  8531. ΓòÉΓòÉΓòÉ 519. No write permission to query file. ΓòÉΓòÉΓòÉ
  8532.  
  8533. ERROR: You tried to save the current query to a read-only query file. (Query 
  8534. file name is provided in the error window.) 
  8535.  
  8536. CAUSE: Possible causes are: 
  8537.  
  8538. o You didn't realize that it is a read-only query file. 
  8539. o You misspelled the file name. 
  8540.  
  8541. ACTION: Try one of the following: 
  8542.  
  8543. o Click on 'Yes' to reenter the query file name in the 'Save' dialog. 
  8544. o Click on 'No' to exit the 'Save' or 'Save as' option. 
  8545.  
  8546.  
  8547. ΓòÉΓòÉΓòÉ 520. Conflict between weight settings and Catalog. ΓòÉΓòÉΓòÉ
  8548.  
  8549. ERROR: You are trying to run a query, but the query can not be run because 
  8550. there is a conflict between the weight settings of the query and the Catalog 
  8551. features. 
  8552.  
  8553. CAUSE: Possible causes are: 
  8554.  
  8555. o You open a Catalog which does not have the feature you want to do the query 
  8556.   on. 
  8557.  
  8558. ACTION: Try one of the following: 
  8559.  
  8560. o Deselect the features from the weight settings of the query that are not 
  8561.   supported in the Catalog. 
  8562. o Delete the sample in the query which is not supported in the Catalog. 
  8563. o Open another Catalog which has the feature you want to query. 
  8564.  
  8565.  
  8566. ΓòÉΓòÉΓòÉ 521. Unable to open file. ΓòÉΓòÉΓòÉ
  8567.  
  8568. ERROR: An error occurred while the program is trying to open the file. (The 
  8569. file name is provided in the error window.) 
  8570.  
  8571. CAUSE: Possible causes are: 
  8572.  
  8573. o The file name does not exist. 
  8574. o The file name is supplied incorrectly 
  8575. o The file is locked by other users. 
  8576.  
  8577. ACTION: Try one of the following: 
  8578.  
  8579. o Supply the correct file name and try again. 
  8580.  
  8581.  
  8582. ΓòÉΓòÉΓòÉ 522. Unable to read from file. ΓòÉΓòÉΓòÉ
  8583.  
  8584. ERROR: An error occurred while the program is trying to read from the file. 
  8585. (The file name is provided in the error window.) 
  8586.  
  8587. CAUSE: Possible causes are: 
  8588.  
  8589. o The file name does not exist. 
  8590. o The file name is supplied incorrectly 
  8591. o The file is locked by other users. 
  8592. o The file has invalid format. 
  8593.  
  8594. ACTION: Try one of the following: 
  8595.  
  8596. o Supply the correct file name and try again. 
  8597.  
  8598.  
  8599. ΓòÉΓòÉΓòÉ 523. Unable to write to file. ΓòÉΓòÉΓòÉ
  8600.  
  8601. ERROR: An error occurred while the program is trying to write to the file. (The 
  8602. file name is provided in the error window.) 
  8603.  
  8604. CAUSE: Possible causes are: 
  8605.  
  8606. o The file name does not exist. 
  8607. o The file name is supplied incorrectly 
  8608. o The file is locked by other users. 
  8609. o The file has invalid format. 
  8610. o The file is read-only. 
  8611.  
  8612. ACTION: Try one of the following: 
  8613.  
  8614. o Supply the correct file name and try again. 
  8615.  
  8616.  
  8617. ΓòÉΓòÉΓòÉ 524. Unable to open database table. ΓòÉΓòÉΓòÉ
  8618.  
  8619. ERROR: An error occurred while the program is trying to open the database 
  8620. table. (The database table name and the error are provided in the error 
  8621. window.) 
  8622.  
  8623. CAUSE: Possible causes are: 
  8624.  
  8625. o The database table does not exist. 
  8626. o The database table is corrupted. 
  8627. o Logon information supplied is incorrect. 
  8628. o A memory allocation error. 
  8629. o An internal processing error occured. 
  8630.  
  8631. ACTION: Try one of the following: 
  8632.  
  8633. o Supply the correct logon information and try again. 
  8634. o Verify that your system meets the minimum requirements for the product. 
  8635. o Close unneeded applications or window. 
  8636. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8637. o If the symptom persists, call your service representative. 
  8638.  
  8639.  
  8640. ΓòÉΓòÉΓòÉ 525. Unable to read database schema. ΓòÉΓòÉΓòÉ
  8641.  
  8642. ERROR: An error occurred while the program is trying to read the database 
  8643. heading information. (The database table name and the error are provided in the 
  8644. error window.) 
  8645.  
  8646. CAUSE: Possible causes are: 
  8647.  
  8648. o The database table does not exist. 
  8649. o The database table is corrupted. 
  8650. o Logon information supplied is incorrect. 
  8651. o A memory allocation error. 
  8652. o An internal processing error occured. 
  8653.  
  8654. ACTION: Try one of the following: 
  8655.  
  8656. o Supply the correct logon information and try again. 
  8657. o Verify that your system meets the minimum requirements for the product. 
  8658. o Close unneeded applications or window. 
  8659. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8660. o If the symptom persists, call your service representative. 
  8661.  
  8662.  
  8663. ΓòÉΓòÉΓòÉ 526. Unable to read database record from database table. ΓòÉΓòÉΓòÉ
  8664.  
  8665. ERROR: An error occurred while the program is trying to read a database record. 
  8666. (The database table name and the error are provided in the error window.) 
  8667.  
  8668. CAUSE: Possible causes are: 
  8669.  
  8670. o The database table does not exist. 
  8671. o The database table is corrupted. 
  8672. o Logon information supplied is incorrect. 
  8673. o A memory allocation error. 
  8674. o An internal processing error occured. 
  8675.  
  8676. ACTION: Try one of the following: 
  8677.  
  8678. o Supply the correct logon information and try again. 
  8679. o Verify that your system meets the minimum requirements for the product. 
  8680. o Close unneeded applications or window. 
  8681. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8682. o If the symptom persists, call your service representative. 
  8683.  
  8684.  
  8685. ΓòÉΓòÉΓòÉ 527. Unable to write database record to database table. ΓòÉΓòÉΓòÉ
  8686.  
  8687. ERROR: An error occurred while the program is trying to write a record to the 
  8688. database table. (The database table name and the error are provided in the 
  8689. error window.) 
  8690.  
  8691. CAUSE: Possible causes are: 
  8692.  
  8693. o The database table does not exist. 
  8694. o The database table is corrupted. 
  8695. o Logon information supplied is incorrect. 
  8696. o A memory allocation error. 
  8697. o An internal processing error occured. 
  8698.  
  8699. ACTION: Try one of the following: 
  8700.  
  8701. o Supply the correct logon information and try again. 
  8702. o Verify that your system meets the minimum requirements for the product. 
  8703. o Close unneeded applications or window. 
  8704. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8705. o If the symptom persists, call your service representative. 
  8706.  
  8707.  
  8708. ΓòÉΓòÉΓòÉ 528. Unable to close database table. ΓòÉΓòÉΓòÉ
  8709.  
  8710. ERROR: An error occurred while the program is trying to close the database 
  8711. table. (The database table name and the error are provided in the error 
  8712. window.) 
  8713.  
  8714. CAUSE: Possible causes are: 
  8715.  
  8716. o The database table does not exist. 
  8717. o The database table is corrupted. 
  8718. o Logon information supplied is incorrect. 
  8719. o A memory allocation error. 
  8720. o An internal processing error occured. 
  8721.  
  8722.  
  8723. ΓòÉΓòÉΓòÉ 529. Column is missing from database table. ΓòÉΓòÉΓòÉ
  8724.  
  8725. ERROR: A column is missing from the database table. (The database table name 
  8726. and the error are provided in the error window.) 
  8727.  
  8728. CAUSE: Possible causes are: 
  8729.  
  8730. o The column was deleted from the database table. 
  8731. o The database table is corrupted. 
  8732. o An internal processing error occured. 
  8733.  
  8734. ACTION: Try one of the following: 
  8735.  
  8736. o Add the column to the database table. 
  8737. o Reconstruct the database table. 
  8738. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8739. o If the symptom persists, call your service representative. 
  8740.  
  8741.  
  8742. ΓòÉΓòÉΓòÉ 530. Cannot create database table. ΓòÉΓòÉΓòÉ
  8743.  
  8744. ERROR: Your database table can not be created due to error. (The database table 
  8745. name and the error are provided in the error window.) 
  8746.  
  8747. CAUSE: Possible causes are: 
  8748.  
  8749. o There is not enough disk space. 
  8750. o You misspelled the table name. 
  8751. o There already is a database file by that name. 
  8752. o Incorrect logon information. 
  8753.  
  8754. ACTION: Try one of the following: 
  8755.  
  8756. o Verify that your system meets the minimum requirements for the product. 
  8757. o Close unneeded applications or window. 
  8758. o Delete any unnecessary files on the disk where the SWAPPER.DAT file exists. 
  8759. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8760. o If the symptom persists, call your service representative. 
  8761.  
  8762.  
  8763. ΓòÉΓòÉΓòÉ 531. Window creation failed. ΓòÉΓòÉΓòÉ
  8764.  
  8765. ERROR: An error occurred while the program is trying to create a window. 
  8766.  
  8767. CAUSE: The program cannot create a window. 
  8768.  
  8769. ACTION: Try one of the following: 
  8770.  
  8771. o Shutdown OS/2 and restart the system, then try the same operation again. 
  8772. o If the symptom persists, call your service representative. 
  8773.  
  8774.  
  8775. ΓòÉΓòÉΓòÉ 532. Catalog does not exist. ΓòÉΓòÉΓòÉ
  8776.  
  8777. ERROR: The program is trying to load the Catalog, but the Catalog name does not 
  8778. exist. (The Catalog name is provided in the error window.) 
  8779.  
  8780. CAUSE: Possible causes are: 
  8781.  
  8782. o The Catalog name does not exist. 
  8783. o You entered the Catalog name incorrectly. 
  8784.  
  8785. ACTION: Try one of the following: 
  8786.  
  8787. o Correct the Catalog name and try again. 
  8788.  
  8789.  
  8790. ΓòÉΓòÉΓòÉ 533. Catalog contains unanalyzed areas or deleted records, run ΓòÉΓòÉΓòÉ
  8791.  
  8792. Image Analyzer. 
  8793.  
  8794. ERROR: The Catalog loaded contains unanalyzed areas which should be analyzed 
  8795. before running the query. (The Catalog name is provided in the error window.) 
  8796.  
  8797. CAUSE: Possible causes are: 
  8798.  
  8799. o New areas were added to the Catalog but has not been analyzed yet. 
  8800. o Records were deleted from the the Catalog. 
  8801.  
  8802. ACTION: Try one of the following: 
  8803.  
  8804. o Run the Image Analyzer and then try the query. 
  8805.  
  8806.  
  8807. ΓòÉΓòÉΓòÉ 534. Object has invalid data, run Image Analyzer. ΓòÉΓòÉΓòÉ
  8808.  
  8809. ERROR: The Catalog loaded contains invalid data. 
  8810.  
  8811. CAUSE: Possible causes are: 
  8812.  
  8813. o Database record were updated incorrectly. 
  8814.  
  8815. ACTION: Try one of the following: 
  8816.  
  8817. o Run the Image Analyzer and then try the query. 
  8818.  
  8819.  
  8820. ΓòÉΓòÉΓòÉ 535. Parameter is neither a Catalog nor a query file. ΓòÉΓòÉΓòÉ
  8821.  
  8822. ERROR: You specified a parameter for the Image Query program, but the parameter 
  8823. is neither a Catalog name nor a query file name.  This parameter is ignored. 
  8824. (The parameter is provided in the error window.) 
  8825.  
  8826. CAUSE: Possible causes are: 
  8827.  
  8828. o You misspelled the name. 
  8829. o You supplied the parameter incorrectly. 
  8830.  
  8831. ACTION: Try one of the following: 
  8832.  
  8833. o Reinvoke the Image Query with a correct Catalog name and/or query file name. 
  8834. o To select the query file, select the "Query - Open" menu item from the Image 
  8835.   Query menu bar. 
  8836. o To select a Catalog, select the "Query - Open Catalog" menu item from the 
  8837.   Image Query menu bar. 
  8838.  
  8839.  
  8840. ΓòÉΓòÉΓòÉ 536. This is not a Catalog. ΓòÉΓòÉΓòÉ
  8841.  
  8842. ERROR: The name supplied withe the program is not a Catalog name. (The Catalog 
  8843. name is provided in the error window.) 
  8844.  
  8845. CAUSE: Possible causes are: 
  8846.  
  8847. o You misspelled the name. 
  8848. o You supplied the parameter incorrectly. 
  8849.  
  8850. ACTION: Try one of the following: 
  8851.  
  8852. o Reinvoke the Image Query with a correct Catalog name and/or query file name. 
  8853. o To select a Catalog, select the "Query - Open Catalog" menu item from the 
  8854.   Image Query menu bar. 
  8855.