home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / w / w047 / 2.ddi / NJSTAR2.DOC < prev    next >
Encoding:
Text File  |  1992-01-28  |  49.1 KB  |  1,004 lines

  1. (This is the second part of NJSTAR USER'S MANUAL. Read NJSTAR1.DOC first)
  2. =============================================================================
  3.                                MACROS COMMANDS
  4.  
  5.  
  6. This section describes NJStar's Macro related functions.  Those functions are
  7. located under "Macro" in the main menu.
  8.  
  9. A macro is a  predefined sequence of a  series of NJStar commands.   User may
  10. record a  series commands  within NJStar,  or write  a macro  text file  with
  11. NJStar  and then  compile it  with  NJStar's utility  program, NJMAC.EXE,  to
  12. convert it to a macro file.
  13.  
  14. Please also see  PROGRAM USAGE for information  about loading a macro  in the
  15. command line.
  16.  
  17. FUNCTION   <MacroRec>         [F11]
  18.             ╝╟┬╝├ⁿ┴ε
  19.  
  20. This  function will  start and  stop macro recording.   When  entering macro-
  21. record mode,  the right side of the  bottom will display a  sign of "Record."
  22. Mouse  user may point  the mouse cursor at  that position and  then click the
  23. left button once to invoke this function.
  24.  
  25. When start  this function, the following sequence of  NJStar commands will be
  26. recorded  and stored  at the  macro  buffer, until  user invoke  this command
  27. again.  The content in the macro  buffer will be wiped out when quitting from
  28. NJStar, or replaced by the next recorded macro.
  29.  
  30. When recording a macro, pressing [Esc] would be handle as a normal command to
  31. be recorded, instead of cancellation of the command.
  32.  
  33. FUNCTION   <MacroExec>        [F12]
  34.             ╓┤╨╨╝╟┬╝
  35.  
  36. This function will execute the macro stored at the macro buffer.  If there is
  37. nothing at the macro buffer, it will do nothing.
  38.  
  39. If a user macro turns out to be a locked loop, user may press [Ctrl + C] to
  40. cancel the execution.
  41.  
  42. FUNCTION   <SaveMacro>        [Alt + F11]
  43.             ╝╟┬╝┤µ┼╠
  44.  
  45. This function will save the content in the macro buffer to a file with a user
  46. specified file name.   Thus, a  recorded macro can  be repeatedly used  later
  47. again.   The  macro filename  use the  standard  extension name,  .NJM.   Any
  48. extension name input by user other than that would be ignored.
  49.  
  50. If  the file name given by user is exists for other file, the system will ask
  51. user to confirm  the file name.  User  may press [Esc] at any  time to cancel
  52. the request.
  53.  
  54. FUNCTION   <ReadMacro>        [Alt + F12]
  55.             ╢┴╚í╝╟┬╝
  56.  
  57. This function will read a user specified macro file into the macro buffer, so
  58. that user can execute the macro from the buffer after this.
  59.  
  60. FUNCTION   <RepeatCmd>        [Ctrl + F11]
  61.             ╓╪╕┤├ⁿ┴ε
  62.  
  63. This function will repeat previous pressed command for given number of times.
  64. If previous pressed key is a macro command, then <RepeatCmd> will repeat the
  65. Macro for given number of times. This function can not be used in the macro.
  66.  
  67. MACRO TEXT FILES
  68.  
  69. The following is the basic regulations for macro files.
  70.  
  71.      1.   A macro text file should be named with extension name .NJ;
  72.  
  73.      2.   A text macro file may only contains one macro statement;
  74.  
  75.      3.   A macro statement should starts with a string "Macro";
  76.  
  77.      4.   When a line  goes too long, use "&" at the end  of line to indicate
  78.           continuing to the next line;
  79.  
  80.      5.   A comment line in the macro text file starts with a "*" character;
  81.  
  82.      6.   All commands  listed in this  manual can be  written to macro  text
  83.           file, separated by a space.  Upcase or lowercase doesn't matter;
  84.  
  85.      7.   Use double quotation marks  ("") to input the enclosed  text to the
  86.           editing screen or a search string at prompt;
  87.  
  88.      8.   Use single quotation marks  ('') to input the enclosed text  to the
  89.           editing screen or a Chinese character code at prompt;
  90.  
  91.      9.   Use #nnn to input an ASCII character  presented by nnn.  The number
  92.           nnn can be either in Decimal, Hex, or Oct format;
  93.  
  94.      10.  Use $nn to sleep the execution for a period of nn ticks.  One tick
  95.           is equal to 1/18 second.  User  input would be ignored  during the
  96.           sleeping time;
  97.  
  98.      11.  Use <Pause> command to pause the execution of the macro, until user
  99.           press [Return]  or [Esc].   User may carry out  other editing tasks
  100.           during the pause time when Njstar prompts user for a search  string
  101.           or file name;
  102.  
  103.      12.  Use  <ScreenOff> to  freeze the  screen display  when the  macro is
  104.           excused.  Use <ScreenOn>  to turn on the screen.   The default mode
  105.           is <ScreenOn>;
  106.  
  107.      13.  Use string plus  ":" to  compose a  label.  A  macro statement  can
  108.           contains up to 64 labels;
  109.  
  110.      14.  Use <Jump> followed  by a label to  indicate the command switch  to
  111.           the label within the macro statement unconditionally;
  112.  
  113.      15.  Use <JTrue> followed  by a label to indicate  the command switch to
  114.           the label within  the macro statement when the  previous command is
  115.           successfully executed; and
  116.  
  117.      16.  Use <JFalse>  followed by a label to indicate the command switch to
  118.           the label within the macro  statement when the previous command can
  119.           not be executed.
  120.  
  121. Here  is an example of a macro  statement,  This macro will replace two ASCII
  122. "A1A1"   characters  (Pure-Chinese  Space  characters)  to  two  ASCII  space
  123. characters.
  124.  
  125.      [EXAMPLE]
  126.  
  127.           Macro ASCinput Replace "íí" Enter "  " Enter file
  128.  
  129. NJMAC.EXE
  130.  
  131. The utility program NJMAC.EXE is under the  same subdirectory of NJSTAR.  The
  132. following is the usage of this program.
  133.  
  134.      [USAGE]
  135.           C:\NJSTAR20> NJMAC macfile
  136.  
  137. The macfile is the name  of a macro text file.  Please add the drive name and
  138. the full path if necessary.  The resultant macro file will use  the same file
  139. name, with an extension name .NJM.  The location of the resultant macro  file
  140. is the same as that of the original macro text file.
  141.  
  142. If the macro text file contains void statement, NJMAC will generate  an error
  143. message indicating the error location within the file.
  144.  
  145. =============================================================================
  146.                         PRINTING AND FILE CONVERSION
  147.  
  148.  
  149. This  section  describes  NJStar's printing  and  file  conversion functions.
  150. Those functions are located under the "output" in the main menu.
  151.  
  152. FUNCTION   <Print>            [Ctrl + P]
  153.             ┤≥╙í╩Σ│÷
  154.  
  155. This function will print the current file to the user defined output device.
  156.  
  157. Currently, NJStar  may support 9 pin  or 24 pin dot matrix  printer (Epson or
  158. IBM-ProPrinter  and their compatibles), Canon BubbleJet,  and HP series laser
  159. printers.  User need to install a proper printer driver with  NJCONFIG.EXE in
  160. order to use a desired printer.
  161.  
  162. After a  correct printer drive is installed, user  can print the current file
  163. to the printer  or a file.   Please notice that, the  output character style,
  164. traditional or simplified, depends upon  the current displaying style.  Thus,
  165. to print a file in traditional  characters, user may need to set the  display
  166. to traditional style first by using <SwitchCCLIB> command.
  167.  
  168. If the printer is not attached to the computer, or user prefers  to use other
  169. printer, user print the  current file to a printing file  first, according to
  170. another  printer's setting.   Then,  user may  use NJStar's  utility program,
  171. NJPRN.EXE, to print out that file later.
  172.  
  173. NJPRN.EXE
  174.  
  175. The utility program NJPRN.EXE is under the  same subdirectory of NJSTAR.  The
  176. following is the usage of this program.
  177.  
  178.      [USAGE]
  179.           C:\NJSTAR20> NJPRN printfile port
  180.  
  181. Printfile is  a file name for the printing  file generated by NJStar.  Please
  182. include the  drive name and  the full  path for NJPRN.EXE  and print  file if
  183. necessary.  The valid ports are PRN, LPT1, LPT2, or LPT3.
  184.  
  185. PRINTING FORMAT COMMANDS
  186.  
  187. The  following is  NJStar's printing  format  commands, used  to enhance  the
  188. output format.
  189.  
  190.   English Name          Chinese Name     Function
  191.   ===================   ==============   =====================================
  192.    \NewPage              \╗╗╥│           Forcing to print on a new page
  193.  
  194.    \PageNumber=nn        \╥│║┼=nn        Specifying the  current page  number
  195.                                          to nn
  196.  
  197.    \NumberStyle="(%d)"   \╥│▒Ω="╡┌%d╥│"  Specifying  the page number style  as
  198.                                          text shown in "".  Variable %d is the
  199.                                          current page number
  200.  
  201.    \NoPageNumber         \╬▐╥│║┼         Not printing page number
  202.  
  203.    \LeftMargin=nn        \╫≤┐╒=nn        Setting left margin to nn Chinese
  204.                                          characters
  205.  
  206.    \RightMargin=nn       \╙╥┐╒=nn        Setting right margin to nn Chinese
  207.                                          characters
  208.  
  209.    \TopMargin=nn         \╔╧┐╒=nn        Setting top margin to nn lines
  210.                                          (1 line=1/6 inch or 1 line= 30 dots)
  211.  
  212.    \BottomMargin=nn      \╧┬┐╒=nn        Setting bottom margin  to  nn  lines
  213.                                          (1 line=1/6 inch or 1 line= 30 dots)
  214.  
  215.    \LineSpace=nn         \╨╨╛α=nn        Setting the  space between  lines to
  216.                                          nn dots
  217.  
  218.    \Font=nn              \╫╓║┼=nn        Setting the size of Chinese character
  219.                                          to nn. ( 1 normal; 2 large)
  220.  
  221.    \Center               \╓╨╨─           Centering the current line on page
  222.    ===================   ==============  =====================================
  223.  
  224. Please notice,
  225.  
  226.      1)   All commands must start at  beginning of the Line, and started with
  227.           "\".   To print a "\" character at the beginning of a line,  please
  228.           use "\\".
  229.  
  230.      2)   More than one command can be written in one line.
  231.  
  232. FUNCTION   <PcxSaveFile>      [Shift + F5]
  233.             ╩Σ│÷ PCX
  234.  
  235. This  function will create  a set  of PCX  file (one file  per page)  for the
  236. current file.  The purpose of this function is mainly to  help user to send a
  237. GB file via computerized fax equipment.
  238.  
  239. A GB  file can't be supported  by fax software directly.   But PCX is  one of
  240. popular graphic format, supported by many  fax software too.  Thus, user  may
  241. use this function to convert the current file to PCX files first.  Then, user
  242. may send the PCX files via computerized fax equipment.
  243.  
  244. Since  PCX is primarily  a graphic format,  user may use  any graphic editor,
  245. such as PC PaintBrush, to edit the resultant graphic files.
  246.  
  247. FUNCTION   <zWEditFile>       [Shift + F8]
  248.             ╢┴zW╬─╝■
  249.  
  250. This function will load a  file in zW format, and then decode it  for display
  251. in Chinese.
  252.  
  253. The zW format was initially proposed by Yagui Wei and Ed Lai, for the purpose
  254. of transferring GB files via mainframe networks in ASCII mode.  GB files  use
  255. extended  ASCII characters  for internal  codes.   Those  characters are  not
  256. allowed to  be transferred  in ASCII  mode, say,  as an  e-mail message,  via
  257. mainframe  networks.  Therefore, one of possible ways to transfer those files
  258. in ASCII format is to use popular  UUENCODE.EXE or UUENCODE.COM program.  But
  259. UUENCODEs produce a  great amount of overhead data so that the resultant file
  260. size is very big, usually 33.33% more than original file.  The zW format uses
  261. much small overhead data, yet the resultant  file can be transferred in ASCII
  262. format.  There are some zW  viewers available for PC computers, so that  user
  263. can read a Chinese message in zW format directly.
  264.  
  265. In a zW file,
  266.  
  267.      1)   Each line starts  with a string of  "zW," with a  max length of  78
  268.           characters;
  269.  
  270.      2)   Chinese characters  (161-254/0xA1-0xFE) are  masked with  high  bit
  271.           off,  that is, shifted by 128 in decimal value;
  272.  
  273.      3)   The End of Line character is preceded with a "#" character;
  274.  
  275.      4)   All other ASCII characters are preceded with a blank character.
  276.  
  277. NJStar would remember the current  file is a zW file after  it is loaded with
  278. this function.   Therefore, when saving file later,  it will save the file in
  279. zW format again.  To change the format  to GB, user needs to use <SaveAs>  to
  280. save it with another name in GB code.
  281.  
  282. Please see PROGRAM USAGE in this manual for the -zW option at command line.
  283.  
  284. FUNCTION   <zWDecode>         [Shift + F7]
  285.             ╥δzW╬─╝■
  286.  
  287. This function will convert a zW file to GB format.
  288.  
  289. If a  zW format file  is loaded  without using  <zWEditFile> command,  NJStar
  290. would simply handle it as  a GB file without Chinese characters.   Thus, user
  291. may use this function  to decode the current zW  file into GB format.   After
  292. that, this file would be saved in GB format permanently.
  293.  
  294. FUNCTION   <zWSaveFile>       [Shift + F6]
  295.             ┤µzW╬─╝■
  296.  
  297. This function will encode the current file into zW format and save the result
  298. to disk  with a user  specified file name.   When prompted, user may  enter a
  299. file name, with drive  name and full path if necessary.  NJStar will ask user
  300. to confirm the file name if it exists.
  301.  
  302. Since  the resultant file  is in  zW format,  user may send  the file  to the
  303. mainframe network in ASCII mode.
  304.  
  305. FUNCTION   <HzEditFile>       [Shift + F4]
  306.             ╢┴Hz╬─╝■
  307.  
  308. This function will load a  file in Hz format, and then  decode it for display
  309. in Chinese.
  310.  
  311. Hz format,  proposed collectively and  finalized by  Fung F. Lee,  is another
  312. format   dedicated  for  transferring  Chinese  file  via  computer  network.
  313. Generally it uses  less overhead data than zW format in conversion, and cover
  314. more  loopholes in zW  format.  However,  some mail editors  can't accept the
  315. lengthy lines in Hz format.
  316.  
  317. Hz format keeps the original hard line setting.  Then, a line is divided into
  318. different segment, grouping by  the following four types of data.   Then, the
  319. following coding schemes and the  identifiers are applied for different types
  320. of data.
  321.  
  322.                ASCII CODE        ENCODING        IDENTIFIER
  323.                =============     ===========     ==========
  324.                c =   0 -  31     C = c +  32     ~(C~)
  325.                c =  32 - 127     C = c             C   (no identifier)
  326.                c = 128 - 160     C = c -  96     ~[C~]
  327.                c = 161 - 254     C = c - 128     ~{C~}
  328.  
  329. NJStar  would remember the current file is  a Hz file after it is loaded with
  330. this command.  Therefore, when saving file later, it will save the file in Hz
  331. format  again.  To  change the format  to GB, user  needs to  use <SaveAs> or
  332. <RenameFile> function to save it with another name.
  333.  
  334. Please see PROGRAM USAGE in this manual for the -Hz option at command line.
  335.  
  336. FUNCTION   <HzDecode>         [Shift + F3]
  337.             ╥δHz╬─╝■
  338.  
  339. This function will convert a Hz file to GB format.
  340.  
  341. If a  Hz format  file is  loaded without  using <HzEditFile> command,  NJStar
  342. would simply handle it  as a GB file without Chinese  characters.  Thus, user
  343. may use this function to  decode the current Hz file  into GB format.   After
  344. that, this file would be saved in GB format permanently.
  345.  
  346. FUNCTION   <HzSaveFile>       [Shift + F2]
  347.             ┤µHz╬─╝■
  348.  
  349. This  function will  encode  the current  file into  Hz format  and  save the
  350. results  to disk with  a user specified file  name.  When  prompted, user may
  351. enter a file  name, with drive name and full path if  necessary.  NJStar will
  352. ask user to confirm the file name if it exists.
  353.  
  354. Since the  resultant file  is in Hz  format, user  may send  the file to  the
  355. mainframe network in ASCII mode.
  356.  
  357. =============================================================================
  358.                                 NJCONFIG.EXE
  359.  
  360.  
  361. NJCONFIG.EXE is one  of NJStar's utility programs.   However, it is  the most
  362. important one because  it is  used to  initialize the NJStar.   This  section
  363. describes the basic procedures for NJCONFIG.EXE.
  364.  
  365. To run NJCONFIG.EXE,  first make sure  it is in  the current subdirectory  or
  366. accessible through system  path statement.  Please  also make a back  copy of
  367. current NJSTAR.EXE.  Then, at DOS prompt, enter the following command,
  368.  
  369.      [USAGE]
  370.           C:\NJSTAR20> NJCONFIG
  371.  
  372. After receiving the correct command,  NJCONFIG.EXE will be invoked, beginning
  373. with the following message,
  374.  
  375.           Enter the program name to configure [NJSTAR.EXE]:
  376.  
  377. Press [Return] key if the default file name is correct, or enter a file name,
  378. including the  drive name and  full path if  necessary.  Then,  the following
  379. main menu will display at the center of the screen,
  380.  
  381.           Options:
  382.  
  383.                C - Color settings
  384.                G - General options
  385.                H - Help screen
  386.                K - Keys configuration
  387.                R - Restore default key setting
  388.                P - Printer settings
  389.                I - Install printer driver
  390.                S - Save and quit
  391.                Q - Quit without save
  392.  
  393.           Enter your option:
  394.  
  395. Here are the  questions for  color settings.   Please notice  that the  color
  396. number is shown on the screen as sample color when the program is running.
  397.  
  398.           Enter background color for text editing screen. (0-  7) [  1]:
  399.           Enter background color for bottom input line... (0-  7) [  4]:
  400.           Do you want to use dark background color..............[ NO]?
  401.           Do you want to display marked block in reverse video..[YES]?
  402.  
  403.           Enter color number for text editing screen... (1- 15) [ 10]:
  404.           Enter color number for cursor ............... (1- 15) [ 15]:
  405.           Enter color number for separation line....... (1- 15) [ 15]:
  406.           Enter color number for QuickHelp screen ..... (1- 15) [ 11]:
  407.           Enter color number for marked text block..... (1- 15) [ 13]:
  408.           Enter color number for menu (Reverse Video).. (1- 15) [ 15]:
  409.           Enter color number for hilighted menu item... (1- 15) [ 13]:
  410.  
  411.           Enter color number for bottom line .......... (1- 15) [ 15]:
  412.           Enter color number for general message ...... (1- 15) [ 14]:
  413.           Enter color number for ERROR message......... (1- 15) [ 13]:
  414.  
  415. Here  are  the  questions   for  general  options.    Please  refer   to  the
  416. corresponding materials in this manual.
  417.  
  418.           Is your keyboard a Enhanced Keyboard (if NJStar did
  419.           not work on your computer/keyboard please select NO). [ NO]?
  420.           Do you want to start with FanTi Chinese.............. [ NO]?
  421.           Do you want to start with PinYin input mode.......... [YES]?
  422.           Do you want to create a backup file.................. [YES]?
  423.           Do you want to save file in binary (Smaller size).... [ NO]?
  424.           Do you want to order PinYin table dynamically........ [YES]?
  425.           Do you want to save dictionaries automatically....... [YES]?
  426.           Do you want to start with pure Chinese input......... [ NO]?
  427.           Do you want to use 25 lines if VGA screen installed.. [YES]?
  428.           Do you want to display end of line mark.............. [ NO]?
  429.           Enter ASCII code of end of line(EOL) mark....... (1-255) [ 20]:
  430.           Do you want to display the real line number(Slow).... [YES]?
  431.           Do you want to display <*** End of File ***> mark.... [YES]?
  432.           Do you want to enter search string for SearchBackward.[YES]?
  433.           Do you want to have a blinking cursor................ [YES]?
  434.           Do you want to have sound beep when error occurred... [YES]?
  435.           Enter sound frequency (Hz).................... (1-5000) [400]:
  436.           Enter autosave interval in min. (0--no save).. (0- 60) [ 10]:
  437.  
  438. Here  is the  prompt for  the user  specified help screen  file.   Please see
  439. <QuickHelp> in MENU AND HELP for the specification of the help file.
  440.  
  441.           Enter help screen configuration file name [NJCONFIG.HLP]:
  442.  
  443. Here is the prompt  for the user specified key assignment file.   The default
  444. file name is  NJCONFIG.KEY.  User may  specify a user key  assignment file if
  445. necessary.
  446.  
  447.           Enter key configure data file name [NJCONFIG.KEY]:
  448.  
  449. User  may  use  NJStar  to  write  a  key  assignment,  reassigning  NJStar's
  450. configurable functions to  user specified keys.  Here,  some important points
  451. are,
  452.  
  453.      1.   Use GB format (or ASCII) format for the key assignment file;
  454.  
  455.      2.   Comment   lines  in  the  key   assignment  file  starts  with  "*"
  456.           characters;
  457.  
  458.      3.   Use function names in English as listed in Appendix 1;
  459.  
  460.      4.   Use the standard key names and button names listed in Appendix 2;
  461.  
  462.      5.   A function may be assigned to more than one key.  But if more than
  463.           one function is assigned to the same key, only the last assignment
  464.           will be honored.
  465.  
  466.      6.   Please notice some keys are only available for enhanced keyboards.
  467.           When a  non-available key  is used in  a key assignment file,  the
  468.           the assignment will be ignored.
  469.  
  470.      7.   A function can be assigned to a single key (or a mouse button) or a
  471.           primary key combination ([Shift], [Alt], or [Ctrl] + other keys) in
  472.           the following way:
  473.  
  474.                     KeyName   Function Name or a macro
  475.  
  476.           [EXAMPLE]
  477.                     F1        QuickHelp
  478.                     @Y        Paste
  479.                     ^X        Meta
  480.                     #Enter    HardReturn
  481.  
  482.      8.   A function  can  be assigned  to  a  meta key  combination  in  the
  483.           following  way (Note:  a  meta  key should  be  defined prior  meta
  484.           combination.),
  485.  
  486.                     MetaKey   FunctionName or a macro
  487.  
  488.           [EXAMPLE]
  489.                     Meta+^Z   QuitFile
  490.                     Meta+W    Macro EXInput 'B'
  491.  
  492.  
  493. Here  are  the questions  for  the printer  settings.   Please  refer  to the
  494. corresponding materials in this manual.
  495.  
  496.           Printer port (0=Lpt1  1=Lpt2  ).................... (0-  1) [  0]:
  497.           Double strike for 9 pin printing (0=NO, 1=YES)..... (0-  1) [  0]:
  498.           Paper feeding (0=Manual 1=Continuous).............. (0-  1) [  1]:
  499.           Should NJSTAR interpret the '\' formatting commands.........[YES]?
  500.           Do you want to print page number............................[YES]?
  501.           Default paper length in lines (1 line= 1/6 inch).. (20- 90) [ 70]:
  502.           Default top margin in lines (1 line= 1/6 inch)..... (2- 20) [  6]:
  503.           Default bottom margin in lines (1 line= 1/6 inch).. (2- 20) [  9]:
  504.           Paper width in number of Chinese chars............ (20- 70) [ 60]:
  505.           Default left margin in number of Chinese chars..... (0- 20) [ 10]:
  506.           Default right margin in number of Chinese chars.... (0- 20) [ 10]:
  507.           Default space between 2 lines(in dots)............. (0- 72) [ 12]:
  508.  
  509. Here is the prompt for the  user specified printer drive file.  Please notice
  510. that only 9 pin printer drivers are supplied with NJStar Shareware Version.
  511.  
  512.           Printer driver currently installed: EPSON 9p & Compat's
  513.  
  514.           Printer Drivers Available:
  515.  
  516.                0. EPSONFX1.DRV    - EPSON FX 60 dpi
  517.                1. EPSONFX2.DRV    - EPSON FX 120 dpi
  518.                2. EPSON9P.DRV     - EPSON 9p & Compat's
  519.                3. IBMPRO9P.DRV    - IBM Pro 9p & Comp's
  520.                4. EPSON24.DRV     - EPSON24p & Compat's
  521.                5. HPLASER.DRV     - HP Laserjet+ & PCLs
  522.                6. IBMX24.DRV      - IBM Pro X24 &Comp's
  523.                7. CANONBJE.DRV    - Canon BJ(EPSON Comp
  524.                8. CANONBJI.DRV    - Canon BJ(IBM Comp.)
  525.  
  526.      Enter printer driver number  (0-  8) [  2]:
  527.  
  528. User may enter one number that is best fit to the user's printer.
  529.  
  530. Finally, the menu item,  "R - Restore  default key setting",  can be used  to
  531. restore NJStar's default keyboard settings.  When finish, user may select "S"
  532. to save and quit, "Q" to cancel all changes made in the current session.
  533.  
  534. =============================================================================
  535.                                 LXGB2DIC.EXE
  536.  
  537.  
  538. This program  is used to  add or delete  LianXiang words to or  from NJStar's
  539. LianXiang dictionary,  NANJILX.DIC.    The  program runs  under  DOS  prompt.
  540. Please make  sure the program  is in the  current subdirectory or  accessible
  541. through the path statement.   Please also make  a back up copy  of dictionary
  542. file before run this command.  Here are the program usages.
  543.  
  544.      1.   Add  LianXiang words from a  word list file, say,  CIHUI.GB, to the
  545.           dictionary file, say, NANJILX.DIC.
  546.  
  547.           [USAGE]
  548.                LXGB2DIC [/atend] @nanjilx.dic +cihui.gb
  549.                     /atend -- add word at end of the list
  550.  
  551. The dictionary  file should  be in  dictionary format.   The  word list  file
  552. should be  in GB format, with one  word at one line.   The first character in
  553. each word should be  in the Class One of the GB  table.  The optional switch,
  554. "/atend", will  force words  to be  added at  the end  of the  list for  each
  555. character.  Otherwise, the newly added  word will appear at the beginning  of
  556. the corresponding list.  After running the program, the dictionary  file will
  557. be updated.
  558.  
  559.      2.   Delete  words listed  in the  given file,  say, CIHUI.GB,  from the
  560.           dictionary file, say, NANJILX.DIC.
  561.  
  562.           [USAGE]
  563.                LXGB2DIC @nanjilx.dic -cihui.gb
  564.  
  565. The requirements of  files are the same  as those in adding  LianXiang words.
  566. See above.  After running the program, the dictionary file will be updated.
  567.  
  568.      3.   Use  the old  dictionary file,  say, DICFILE.OLD,  to update  a new
  569.           dictionary file, say, DICFILE.NEW.
  570.  
  571.           [USAGE]
  572.                LXGB2DIC @dicfile.new @dicfile.old
  573.  
  574. In this case, both  files should be NJStar  dictionary format.  The name  for
  575. the new dictionary file  should go before that of  the old one.  The  program
  576. will check words in the DICFILE.OLD,  and update DICFILE.NEW with those words
  577. are not found in it.  After running, only the first file will be updated.
  578.  
  579. =============================================================================
  580.                                  CCFONT.EXE
  581.  
  582.  
  583. This  utility program  will update  NJStar's font  files with  user specified
  584. characters.   The program runs under DOS  prompt.  Please make  sure that the
  585. program  is  in the  current  subdirectory  or  accessible through  the  path
  586. statement.  Please make a back up copy for each font file if necessary.  Here
  587. are the program usage.
  588.  
  589.      [USAGE]
  590.                CCFONT   -[options] fontfile cclibfile
  591.  
  592.      [OPTIONS]
  593.                     16   - use 16x16 matrix(default)
  594.                     24   - use 24x24 matrix
  595.                     32   - use 32x32 matrix
  596.                     48   - use 48x48 matrix
  597.                     64   - use 64x64 matrix
  598.                     R    - rotate 90 degree
  599.                     B nn - the no. of blank sections(def=8)
  600.  
  601. Please notice, more  than one option can  be used in one  command line.   For
  602. 24x24  font  file, the  option -R  must be  used because  the font  files are
  603. rotated internally for the efficiency of 24 dot printer.
  604.  
  605.      [EXAMPLE]
  606.                C:\NJSTAR20> CCFONT -24 -R font24.dat CCLIBF.24
  607.  
  608. The fontfile in the command line is the file that contains Chinese characters
  609. in dot matrix.  a  font file can have more than one Chinese  character.  Each
  610. character starts with a GuoBiao  address for adding it, immediately following
  611. by the character's dot matrix.  The recommended GB area for adding characters
  612. is AFE4  -> AFFE,  and there  must be  a "+"  sign in  the front  of each  GB
  613. address.   The dot matrix  characters may consist space  characters and other
  614. visible ASCII characters, with relevant number of lines and columns after the
  615. address.  Those characters beyond the given line and column are ignored. (See
  616. file FONT.FON for example.)
  617.  
  618. The cclibfile is the standard font files used by NJStar.   Currently user are
  619. supplied with CCLIB.16, CCLIBF.16, CCLIB.24 and CCLIBF.24.  They are in 16*16
  620. and 24*24 font files correspondingly. (Note: 24*24 font files are provided in
  621. NJStar registered version only.)
  622.  
  623. The fontfile and cclibfile should have same pixel.  That  is, for a character
  624. to be  added to CCLIB.24 or  CCLIBF.24, the font  file must have  a 24x24 dot
  625. matrix.  For  example, if a  16x16 font file  FONT.FON has been created  (see
  626. below), user may add it to CCLIB.16 by using the following command,
  627.  
  628.           C:\NJSTAR20> CCFONT -16 font.fon CCLIB.16 
  629.  
  630. Then  user  may use  NJStar  to  view file  GUOBIAO.DOC,  checking the  added
  631. character at the location of GB AFF0.  Then, user may also try to enter it by
  632. using GB code, AFF0, at GB input mode.
  633.  
  634. ----------Cut following to File: FONT.FON-----------------------------------
  635. -----------------------------------------------
  636. +AFF0            | Assign to GB address: AFF0
  637.                  | The matrix begins from this line
  638. @@@@@@@@    @@   | NOTE: any symbols after line 16 and column 16 are ignored
  639.   @      @@@     |       for 16x16 font.
  640.   @        @     |
  641.   @        @     |
  642.   @@@@@    @     |
  643.   @   @    @     |
  644.   @   @ @@@@@@@  |
  645.  @ @  @    @     |
  646.  @  @ @    @     |
  647.  @  @ @    @     |
  648.  @    @    @     |
  649.  @  @ @    @     |
  650.  @ @  @    @     |
  651. @@@    @      @  |
  652.         @@@@@@@  |
  653. --------------------------------
  654. ----------End of file FONT.FON-----------------------------------------------
  655.  
  656. =============================================================================
  657. APPENDIX 1
  658.  
  659.                     LIST OF NJSTAR CONFIGURABLE FUNCTIONS
  660.  
  661. Note: This table contains all NJStar's configurable functions.  Please notice
  662.       that in the column of DEFAULT KEY, # = Shift+, @ = Alt+, and ^ = Ctrl+.
  663.  
  664. NAME            NAME      DEFAULT KEY    FUNCTION
  665. ==============  ========  =============  ====================================
  666. Menu            ╓≈╣ª─▄▒φ  [#F1]          Call up the main menu
  667. QuickHelp       ╣ª─▄╠ß╩╛  [F1]           Call up the help screen
  668.  
  669. ListDir         ╧╘╩╛─┐┬╝  [@F1]          List user specified directory
  670. EditFile        ▒α╝¡╬─╝■  [F8]           Open user specified file
  671. NextFile        ╧┬╥╗╬─╝■  [F10]          Goto the next file in file ring
  672. PrevFile        ╔╧╥╗╬─╝■  [@F10]         Goto the previous file in file ring
  673. FileList        ╤í╘±╬─╝■  [#F10]         List all files in file ring
  674. RenameFile      ╬─╝■╕─├√  [F7]           Rename the current file
  675. SaveFile        ╬─╝■┤µ┼╠  [F2]           Save the current file to disk
  676. SaveAs          ╗╗├√┤µ┼╠  [^F3]          Save current file to another name
  677. File            ┤µ┼╠═╦│÷  [F4]           Save the current file and quit
  678. SaveAll         ╚½▓┐┤µ┼╠  [^F4]          Save the current file and quit all
  679. QuitFile        ═╦│÷╬─╝■  [F3]           Quit current file (w/ or w/o saving)
  680. QuitAll         ╚½▓┐═╦│÷  [^F3]          Quit all files (w/ or w/o saving)
  681.  
  682. CursorLeft      ╣Γ▒Ω╧≥╫≤  [LEFT]         Move left by one character
  683. CursorRight     ╣Γ▒Ω╧≥╙╥  [RIGHT]        Move right by one character
  684. CursorUp        ╣Γ▒Ω╧≥╔╧  [UP]           Move up by one line
  685. CursorDown      ╣Γ▒Ω╧≥╧┬  [DOWN]         Move down by one line
  686. BegLine         ╥╞╓┴╨╨╩╫  [HOME]         Goto beginning of current screen line
  687. EndLine         ╥╞╓┴╨╨─⌐  [END]          Goto the end of current screen line
  688. WordLeft        ▒╛╛Σ╩╫    [^LEFT]        Move to beginning of current "word"
  689. WordRight       ╧┬╛Σ╩╫    [^RIGHT]       Move to the beginning of next "word"
  690. BegScreen       ╥╞╓┴╞┴╩╫  [^UP], [^A]    Goto top left of the current screen
  691. EndScreen       ╥╞╓┴╞┴─⌐  [^DOWN], [^Z]  Goto bottom left of  current screen
  692. PageUp          ╥╞╓┴╔╧╞┴  [PGUP]         Goto bottom line of previous screen
  693. PageDown        ╥╞╓┴╧┬╞┴  [PGDN]         Goto top line of the next screen
  694. BegFile         ╬─╝■╩╫    [^HOME]        Goto beginning of the current file
  695. EndFile         ╬─╝■─⌐    [^END]         Goto the end of the current file
  696. ScrollUp        ╔╧╣÷╥╗╨╨  [@UP], [^U]    Scroll up screen by one line
  697. ScrollDown      ╧┬╣÷╥╗╨╨  [@DOWN], [^D]  Scorll down screen by on line
  698. GotoLine        ╤░╒╥╨╨║┼  [^F6]          Goto a user specified hard line
  699.  
  700. Enter           ╗╪│╡╝ⁿ    [ENTER]        Enter EOL character or accept input
  701. HardReturn      ╠µ┤·╗╪│╡  [GREYENTER],   Enter EOF character in search string
  702.                           [#ENTER]
  703. DelChar         ╔╛│²║≤╫╓  [DEL]          Delete the current character
  704. BackSpace       ╔╛│²╟░╫╓  [BS]           Delete the previous character
  705. DelLine         ╔╛│²▒╛╨╨  [^BS]          Delete the current line
  706. DelToBegLine    ╔╛╓┴╨╨╩╫  [^J]           Delete to beginning of current line
  707. DelToEndLine    ╔╛╓┴╨╨─⌐  [^K], [^E]     Delete to the end of current line
  708. UnDelLine       ╗╓╕┤╔╛│²  [F9]           Recover latest deleted text
  709. DupLine         ╕┤╓╞▒╛╨╨  [^L]           Duplicate the current line
  710. TimeDate        ╡▒╟░╩▒╝Σ  [^T]           Insert system date and time
  711. ToggleEOL       ╧╘╩╛╨╨─⌐  [^F9]          Toggle display of EOL characters
  712. FileStatus      ╡▒╟░╟Θ┐÷  [^F1]          Report current file status
  713. WordCount       ═│╝╞╫╓╖√  [^F5]          Count a user specified string
  714.  
  715. Search          ▓Θ╒╥╫╓╖√  [F5]           Search for user specified string
  716. SearchForward   ╧≥╟░▓Θ╒╥  [^F]           Continue to search forward
  717. SearchBackward  ╧≥║≤▓Θ╒╥  [^B]           Search backward for given string
  718. SearchReplace   ▓Θ╒╥╠µ╗╗  [F6]           Search and replace with confirmation
  719. Replace         ╫╘╢»╠µ╗╗                 Search and replace w/o confirmation
  720.  
  721. MarkBlock       ┐Θ▒Ω╝╟    [#B]           Mark beginning or end of a block
  722. MarkLine        ╨╨▒Ω╝╟    [#L]           Mark current line as a block
  723. UnMarkBlock     ╧√│²▒Ω╝╟  [#U]           Clear current block mark
  724. MoveBlock       ┐Θ╥╞╢»    [#M]           Move block to the cursor position
  725. CopyBlock       ┐Θ╕┤╓╞    [#C]           Copy block to the cursor position
  726. Copy            ┐Θ┤ó┤µ    [^W]           Store the block to block buffer
  727. Paste           ╗╓╕┤┤ó┤µ  [#Y]           Restore the content of block buffer
  728. DelBlock        ┐Θ╔╛│²    [#D]           Delete the current block
  729. UnDelBlock      ┐Θ╗╓╕┤    [#F9]          Restore latest deleted block
  730. GotoBlock       ╤░╒╥▒Ω╝╟  [^G]           Goto the beginning of current block
  731. SaveBlock       ┐Θ╨┤╬─╝■  [#W]           Save the current block to a file
  732.  
  733. SwitchCCLIB     ╖▒╝≥╫¬╗╗  [^F10]         Change character display style
  734. PureChinese     ┤┐╓╨╬─    [#F9]          Change character input mode
  735. PYInput         ╞┤╥⌠╩Σ╚δ  [#F5]          Set input method to PinYin Input
  736. LianXiang       ┴¬╧δ╟░╫╓  [#X]           Provide LianXiang for previous char.
  737. AddLX           ╘÷╝╙┴¬╧δ  [^F8]          Add marked string to LianXiang Dic.
  738. DelLX           ╧√│²┴¬╧δ  [#F8]          Remove marked string from LX Dic.
  739. SaveDic         ╫╓╡Σ┤µ┼╠  [^F2]          Save both LX Dic and PinYin Dic.
  740. GBinput         ╣·▒Ω╩Σ╚δ  [@F4]          Set input method to GuoBiao Input
  741. QWinput         ╟°╬╗╩Σ╚δ  [@F3]          Set input method to QuWeiMa Input
  742. ASCinput        ╙ó╬─╩Σ╚δ  [^F6]          Set input method to ASCII Input
  743. EXInput         ╞Σ╦ⁿ╩Σ╚δ  [@F2]          Select other input method
  744.  
  745. MacroRec        ╝╟┬╝├ⁿ┴ε  [F11]          Begin or end recording commands
  746. MacroExec       ╓┤╨╨╝╟┬╝  [F12]          Execute recorded commands as a macro
  747. SaveMacro       ╝╟┬╝┤µ┼╠  [#F11]         Save the current macro to a file
  748. ReadMacro       ╢┴╚í╝╟┬╝  [#F12]         Read a macro file to macro buffer
  749. RepeatCmd       ╓╪╕┤├ⁿ┴ε  [^F11]         Repeat the current command
  750.  
  751. Print           ┤≥╙í╩Σ│÷  [^P]           Print the current file
  752. PcxSaveFile     ╩Σ│÷ PCX  [#F5]          Ouput the current file to PCX files
  753. zWEditFile      ╢┴zW╬─╝■  [#F8]          Open a zW file for GB display
  754. zWDecode        ╥δzW╬─╝■  [#F7]          Decode a zW file to GB format
  755. zWSaveFile      ┤µzW╬─╝■  [#F6]          Encode current file to zW format
  756. HzEditFile      ╢┴Hz╬─╝■  [#F4]          Open a Hz file for GB display
  757. HzDecode        ╥δHz╬─╝■  [#F3]          Decode a Hz file to GB format
  758. HzSaveFile      ┤µHz╬─╝■  [#F2]          Encode current file to zW format
  759. ==============  ========  =============  ====================================
  760. =============================================================================
  761. APPENDIX 2
  762.  
  763.                        LIST OF NJSTAR KEY NAMES
  764.  
  765. Note: This table contains  all NJStar's assignable key names.   Please notice
  766.       that # = Shift+ ,  @ = Alt+ ,  and ^ = Ctrl+ .   And those key
  767.       names followed by * are only available at enhance keyboard only.
  768.  
  769.       =======================================================================
  770.       PART I: Function keys
  771.  
  772.               F1   F2   F3   F4   F5   F6   F7   F8   F9   F10   F11*    F12*
  773.              #F1  #F2  #F3  #F4  #F5  #F6  #F7  #F8  #F9  #F10  #F11*   #F12*
  774.              @F1  @F2  @F3  @F4  @F5  @F6  @F7  @F8  @F9  @F10  @F11*   @F12*
  775.              ^F1  ^F2  ^F3  ^F4  ^F5  ^F6  ^F7  ^F8  ^F9  ^F10  ^F11*   ^F12*
  776.       -----------------------------------------------------------------------
  777.       PART II: Regular Character Keys
  778.  
  779.                   ESC      BS       ENTER      TAB
  780.                  #ESC     #BS      #ENTER     #TAB
  781.                  @ESC     @BS      @ENTER     @TAB*     @BackSlash
  782.                           ^BS      ^ENTER     ^TAB*     ^BackSlash     ^BREAK
  783.  
  784.                @A   @B   @C   @D   @E   @F   @G   @H   @I   @J   @K   @L   @M
  785.                ^A   ^B   ^C   ^D   ^E   ^F   ^G   ^H   ^I   ^J   ^K   ^L   ^M
  786.  
  787.                @N   @O   @P   @Q   @R   @S   @T   @U   @V   @W   @X   @Y   @Z
  788.                ^N   ^O   ^P   ^Q   ^R   ^S   ^T   ^U   ^V   ^W   ^X   ^Y   ^Z
  789.  
  790.                @`   @-*  @+*  @=   [@   @]   @'   @;   @/
  791.                     ^-                  ^]                  ^2   ^6
  792.       -----------------------------------------------------------------------
  793.       PART III: Keypad Keys
  794.  
  795.                  GREY/       GREY*        GREY-        GREY+       GreyEnter
  796.                 #GREY/      #GREY*       #GREY-       #GREY+      #GreyEnter
  797.                 @GREY/*     @GREY*       @GREY-       @GREY+      @GreyEnter*
  798.                 ^GREY/*     ^GREY**      ^GREY-*      ^GREY+*     ^GreyEnter*
  799.  
  800.                     UP        DOWN         LEFT        RIGHT         Keypad5
  801.                    #UP       #DOWN        #LEFT       #RIGHT        #Keypad5
  802.                    @UP*      @DOWN*       @LEFT*      @RIGHT*
  803.                    ^UP*      ^DOWN*       ^LEFT       ^RIGHT        ^Keypad5*
  804.  
  805.                   HOME        END      PGUP        PGDN        DEL       INS
  806.                  #HOME       #END     #PGUP       #PGDN       #DEL      #INS
  807.                  @HOME*      @END     @PGUP*      @PGDN*      @DEL*     @INS*
  808.                  ^HOME       ^END     ^PGUP*      ^PGDN       ^DEL*     ^INS*
  809.       -----------------------------------------------------------------------
  810.       PART IV: Meta Combination Keys
  811.  
  812.                        0 -> 9      A -> Z
  813.                      !   @   #   $   %   ^   &   *   (   )   -   _  +   =
  814.                      [   ]   \   :   ;   "   '   ,   <   .   >   ?  /   ESC
  815.  
  816.                      ^A -> ^Z     ^6      ^-     ^BACKSLASH      ^RBRACE
  817.       -----------------------------------------------------------------------
  818.       PART V: Mouse Buttoms
  819.  
  820.            M_LEFT  - Click left button      M_LL - Double click left button
  821.            M_RIGHT - Click right button     M_RR - Double click right button
  822.            M_MID   - Click middle button    M_MM - Double click middle button
  823.            M_LR    - Click both buttons
  824.       =======================================================================
  825. =============================================================================
  826. APPENDIX 3
  827.  
  828.              SUMMARY OF NJSTAR LOCATION-SENSITIVE MOUSE FUNCTIONS
  829.  
  830. NOTE: This appendix  presents a summary of NJStar's  location-sensitive mouse
  831.       function.  That is, if user points the mouse cursor at one of locations
  832.       indicated  below,   then  clicks   the left button once  (or  otherwise
  833.       described), it will invoke certain function.
  834.  
  835.       To use a mouse  within NJStar,  user needs to  install the mouse driver
  836.       program prior running NJStar.  Please see user's  mouse manual for more
  837.       information about installing the mouse driver program.
  838.  
  839.       Please watch the following sample  screen first.   The left side is the
  840.       rule for  Line number.   Please notice  that EGA monitor  has different
  841.       line number  from that of VGA monitor.  The bottom line is the rule for
  842.       column number.  Letters (A..G) indicates different areas.
  843.  
  844. Line:   +-------------------------------------------------------------------+
  845.      1  |                                A                                  |
  846.      2  |                                                                   |
  847.         |                                                                   |
  848.         |                                                                   |
  849.         |                                                                   |
  850.         |                                                                   |
  851.         |                                B                                  |
  852.         |                                                                   |
  853.         |                                                                   |
  854.         |                                                                   |
  855.         |                                                                   |
  856.         |                                                                   |
  857.         |                                                                   |
  858.   24/18 |                                                                   |
  859.         +----+-----------+----------------------------------+-------+-------+
  860.   25/19 | C  |   D       |               E                  |   F   |   G   |
  861.         +----+-----------+----------------------------------+-------+-------+
  862. Column: 0    5           12                                69      74      79
  863.  
  864.  
  865.      AREA   DEFINITION           OPERATION           FUNCTIONS
  866.      ====   ==================   =================   ========================
  867.       A     The top line         M_LEFT              Calling up the main menu
  868.  
  869.       B     From the 2nd line    Press the left      <ScrollDown>
  870.             to the line above    button and drag
  871.             the bottom line      down
  872.  
  873.                                  Press the left      <ScrollUp>
  874.                                  buttom and drag
  875.                                  up
  876.  
  877.                                  Other operations    User assigned functions
  878.  
  879.       C     Column 1-4 at the    M_LEFT              Toggle between <ASInput>
  880.             bottom line                              and <PYInput>
  881.  
  882.       D     Column 6-11 at       M_LEFT              <LianXiang>  when not in
  883.             the bottom line                          ASCII input mode
  884.  
  885.       E     Column 13-68 at      M_LEFT              Select a  Chinese  char.
  886.             the bottom line                          to editing screen
  887.  
  888.                                  M_LEFT              <FileList>    when    no
  889.                                                      Chinese   characters  to
  890.                                                      be input
  891.  
  892.       F     Column 69-73 at      M_LEFT              <MacroRec>
  893.             the bottom line
  894.  
  895.       G     Column 75-79 at      M_LEFT              <PureChinese>
  896.             the bottom line
  897.  
  898.      C-G    The bottom line      M_LR                <Escape>
  899.      ====   ==================   =================   ========================
  900.  
  901. =============================================================================
  902. APPENDIX 4
  903.  
  904.                 TABLE OF CONTENTS OF NJSTAR CHINESE MANUAL
  905.  
  906.  
  907.                                 ─┐      ┬╝
  908.                             =================
  909.  
  910.                                                                          ╥│┬δ
  911. ╡╝╤╘ ....................................................................
  912.  
  913. ╡┌╥╗╒┬  í╛─╧╝½╨╟í┐╡─├ⁿ┴ε╙δ╣ª─▄ ..........................................
  914.           1.1 ├ⁿ┴ε▓╦╡Ñ ..................................................
  915.           1.2 ╝≥├≈╠ß╩╛╞┴─╗ ..............................................
  916.           1.3 ┐╪╓╞╨╨ ....................................................
  917.           1.3 ▒╛╒┬╨í╜ß ..................................................
  918.  
  919. ╡┌╢■╒┬  ╘─╢┴╓╨╬─╬─╝■ ....................................................
  920.           2.1 ╞⌠╢»í╛─╧╝½╨╟í┐ ............................................
  921.           2.2 ╢┴╚í╬─╝■ ..................................................
  922.           2.3 ╣Γ▒Ω╥╞╢» ..................................................
  923.           2.4 ╬─╝■╟Θ┐÷ ..................................................
  924.           2.5 ═╦│÷í╛─╧╝½╨╟í┐ ............................................
  925.           2.6 ▒╛╒┬╨í╜ß ..................................................
  926.  
  927. ╡┌╚²╒┬  ╗∙▒╛▒α╝¡╣ª─▄ ....................................................
  928.           3.1 ╞⌠╢»í╛─╧╝½╨╟í┐ ............................................
  929.           3.2 ▒α╝¡╡─╫╝▒╕ ................................................
  930.           3.3 ╬─▒╛╩Σ╚δ ..................................................
  931.           3.4 ╬─▒╛╕┤╓╞╙δ╔╛│² ............................................
  932.           3.5 ╬─▒╛┐Θ▓┘╫≈ ................................................
  933.           3.6 ╚½╛╓▓Θ╒╥╙δ╠µ╗╗ ............................................
  934.           3.7 ┤≥╙í╕±╩╜┐╪╓╞├ⁿ┴ε ..........................................
  935.           3.8 ╬─╝■┤µ┼╠╙δ═╦│÷ ............................................
  936.           3.9 ┤≥╙í╬─╝■ ..................................................
  937.          3.10 ▒╛╒┬╨í╜ß ..................................................
  938.  
  939. ╡┌╦─╒┬  ║║╫╓╩Σ╚δ╖¿ ......................................................
  940.           4.1 ╞┤╥⌠╩Σ╚δ ..................................................
  941.           4.2 ┴¬╧δ╩Σ╚δ ..................................................
  942.           4.3 ╞┤╥⌠┴¬╧δ╩Σ╚δ ..............................................
  943.           4.4 ┴¼╞┤╩Σ╚δ ..................................................
  944.           4.5 ┴¬╧δ┤╩╡Σ╡─╣▄└φ ............................................
  945.           4.6 ╠╪╩Γ╡─╞┤╥⌠╩Σ╚δ ............................................
  946.           4.7 ╣·▒Ω╩Σ╚δ╖¿ ................................................
  947.           4.8 ╟°╬╗┬δ╩Σ╚δ╖¿ ..............................................
  948.           4.9 ╙ó╬─╩Σ╚δ╖¿ ................................................
  949.          4.10 ╞Σ╦ⁿ╩Σ╚δ╖╜╖¿ ..............................................
  950.          4.11 ▒╛╒┬╨í╜ß ..................................................
  951.  
  952. ╡┌╬σ╒┬  ╢α╬─╝■▒α╝¡╩▒╡─╬─╝■╣▄└φ ..........................................
  953.           5.1 ╞⌠╢»í╛─╧╝½╨╟í┐ ............................................
  954.           5.2 ╬─╝■╗╖ ....................................................
  955.           5.3 ╬─╝■╝Σ╡─╜╗╗╗ ..............................................
  956.           5.4 ┤µ┼╠╙δ═╦│÷ ................................................
  957.           5.5 ▒╛╒┬╨í╜ß ..................................................
  958.  
  959. ╡┌┴∙╒┬  ├ⁿ┴ε╫Θ║╧ ........................................................
  960.           6.1 ├ⁿ┴ε╫Θ║╧╡─╝╟┬╝╙δ╘╦╨╨ ......................................
  961.           6.2 ├ⁿ┴ε╫Θ║╧╡─┤µ┼╠╙δ╢┴╚í ......................................
  962.           6.3 ├ⁿ┴ε╫Θ║╧╡─▒α╨┤ ............................................
  963.           6.4 ├ⁿ┴ε╫Θ║╧╡─░▓╫░ ............................................
  964.           6.5 ▒╛╒┬╨í╜ß ..................................................
  965.  
  966. ╡┌╞▀╒┬  ╬─╝■╕±╩╜╫¬╗╗ ....................................................
  967.           7.1 ╩Σ│÷ PCX ╬─╝■ .............................................
  968.           7.2 zW ╬─╝■╕±╩╜╫¬╗╗ ...........................................
  969.           7.3 Hz ╬─╝■╕±╩╜╫¬╗╗ ...........................................
  970.           7.4 ▒╛╒┬╨í╜ß ..................................................
  971.  
  972. ╡┌░╦╒┬  │╠╨≥░▓╫░ ........................................................
  973.           8.1 ╧╡═│╥¬╟≤ ..................................................
  974.           8.2 ░▓╫░╣²│╠ ..................................................
  975.           8.3 ╗╖╛│╔Φ╓├ ..................................................
  976.           8.4 ▒╛╒┬╨í╜ß ..................................................
  977.  
  978. ╡┌╛┼╒┬  │╠╨≥╡≈╜┌ ........................................................
  979.           9.1 ╕¿╓·│╠╨≥ NJCONFIG.EXE .....................................
  980.           9.2 ╞┴─╗╤╒╔½╔Φ╓├ ..............................................
  981.           9.3 ╗∙▒╛▓╬╩²╔Φ╓├ ..............................................
  982.           9.4 ╝≥├≈╠ß╩╛╞┴─╗╔Φ╓├ ..........................................
  983.           9.5 ╝ⁿ╬╗╢¿╥σ╔Φ╓├ ..............................................
  984.           9.6 ┤≥╙í╗·╟²╢»╬─╝■╔Φ╓├ ........................................
  985.           9.7 ┤≥╙í╗·▓╬╩²╔Φ╓├ ............................................
  986.           9.8 ═╦│÷ NJCONFIG.EXE .........................................
  987.           9.9 ▒╛╒┬╨í╜ß ..................................................
  988.  
  989. ╡┌╩«╒┬  ╕¿╓·│╠╨≥ ........................................................
  990.          10.1 ┴¬╧δ┤╩╡Σ╕¿╓·│╠╨≥ LXGB2DIC.EXE .............................
  991.          10.2 ╘∞╫╓╕¿╓·│╠╨≥ CCFONT.EXE ...................................
  992.          10.3 ╝ñ╣Γ┤≥╙í╕¿╓·│╠╨≥ PRINTPS.EXE ..............................
  993.          10.4 ╩Σ╚δ╖╜╖¿╕¿╓·│╠╨≥ INPUTDIC.EXE .............................
  994.          10.5 ▒╛╒┬╨í╜ß ..................................................
  995.  
  996. ╕╜┬╝╥╗  í╛─╧╝½╨╟í┐┐╔▒α╣ª─▄╥╗└└▒φ ........................................
  997. ╕╜┬╝╢■  í╛─╧╝½╨╟í┐┐╔▒α╝ⁿ╬╗╥╗└└▒φ ........................................
  998. ╕╜┬╝╚²  í╛─╧╝½╨╟í┐├ⁿ┴ε╫Θ║╧╣ª─▄╥╗└└▒φ ....................................
  999. ╕╜┬╝╦─  í╛─╧╝½╨╟í┐╞⌠╢»╡─╦╡├≈▓╬╩²╙δ╬─╝■╤í╘± ..............................
  1000. ╕╜┬╝╬σ  í╛─╧╝½╨╟í┐│⌡╩╝╝ⁿ╬╗╢¿╥σ ..........................................
  1001. ╕╜┬╝┴∙  ╣·╙∩╫ó╥⌠╖√║┼íó═■═╫┬Ω-╡╘└φ╦╣┬▐┬φ╗»╞┤╖¿╙δ║║╙∩╞┤╥⌠╥⌠╜┌╢╘╒╒▒φ .......
  1002.  
  1003.                                                                         <END>
  1004.