home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 215 / DDJ9206.ZIP / DFLT12.ZIP / MEMOPAD.TXT < prev    next >
Text File  |  1992-03-25  |  46KB  |  1,454 lines

  1. ; ------------------------ MEMOPAD.TXT ---------------------
  2. ;
  3. ; This is the help text file for the MEMOPAD application. It 
  4. ; includes the help text that a D-Flat application would use 
  5. ; for the user interface.
  6. ;
  7. ; There can be a help window with a helptag name for each
  8. ; command in commands.h, each menu label on the menu bar 
  9. ; as defined in menus.c, and each dialog box name in dialogs.c
  10. ;
  11. ; There can be other help windows as well. Some of them will
  12. ; be displayed as the result of hypertext and definition key 
  13. ; words embedded in the help text of other help windows. Others
  14. ; can be implemented from within an application software system.
  15. ;
  16. ; Following is the format for a help window:
  17. ;
  18. ; ┌── (1st column of each line)
  19. ; 
  20. ; ; anything with a semicolon in the 1st column is a comment
  21. ; <helptag>                 (names the help window)
  22. ; [<<]<helptag>             (names the previous window in chain)
  23. ; [>>]<helptag>             (names the next window in chain)
  24. ; Help Window Title         (displays in window's title bar)
  25. ; Help text follows until next helptag occurs
  26. ; Hypertext reference  [..keyword]<helptag> embedded in text
  27. ; Definition reference [**keyword]<helptag> embedded in text
  28. ; <helptag>                 (names another window)
  29. ;
  30. ; Notes: 
  31. ;   1. A hypertext reference, when selected, causes the 
  32. ;      associated help window named by the <helptag> to 
  33. ;      become the active help window.
  34. ;   2. A definition reference, when selected, displays
  35. ;      a momentary window with the text of the associated
  36. ;      help window named by the <helptag>. The window 
  37. ;      closes when the user releases the Enter key or
  38. ;      mouse button.
  39. ;   3. A definition window has no title.
  40. ;   4. The last window is followed by the <end> helptag.
  41. ;   5. The window's height and width adjust to the text.
  42. ;   6. The [..], [**], and <helptags> do not display and
  43. ;      do not figure in the width of the line in which 
  44. ;      they occur.
  45. ;
  46. ; -----------------------------------------
  47. <Application>
  48. [<<]<MEMOPAD>
  49. [>>]<Menubar>
  50. Application Window
  51. The Application Window is the desktop for the 
  52. application.
  53.  
  54. The Application window contains the application's 
  55. [..Document Windows]<docwindow>. Before you open any documents,
  56. the Application window is empty.
  57.  
  58. The application window has an [..Action Bar]<Menubar> just below
  59. its [..Title Bar]<titlebar> and a [..Status Bar]<statusbar> at the bottom.
  60.  
  61. Note that there might not be a title or status bar
  62. depending on the [..Display]<ID_DISPLAY> option on the [..Options]<Options>
  63. menu.
  64. ; -----------------------------------------
  65. <MEMOPAD>
  66. [>>]<Application>
  67. The MEMOPAD Application
  68. MEMOPAD is a multi-window notepad program that
  69. demonstrates the programmer's [**API]<API> to the D-Flat
  70. Common User Access interface library.
  71. ; -----------------------------------------
  72. <MEMOPADDOC>
  73. [<<]<Application>
  74. The MEMOPAD Document Window
  75. This [..Document Window]<docwindow> is a basic notepad text editor. You can 
  76. have many of these windows open at one time.
  77. ; -----------------------------------------
  78. <docwindow>
  79. Document Window
  80. A Document Window contains the data that you work
  81. on. It displays within the [..Application Window]<Application> and
  82. consists of these parts:
  83.  
  84.   [..Client Area]<client>
  85.   [..Border]<border>
  86.   [..Title Bar]<titlebar>
  87.   [..Status Bar]<statusbar>
  88.   [..Scroll Bars]<scrollbar>
  89.   [..Control Box]<controlbox>
  90.   [..Minimize Box]<minbox>
  91.   [..Maximize Box]<maxbox>
  92.   [..Restore Box]<restorebox>
  93.   [..Resize Box]<sizebox>
  94.  
  95. ; -----------------------------------------
  96. <client>
  97. [<<]<docwindow>
  98. [>>]<border>
  99. Client Area
  100. The Client Area is the space inside the window's
  101. borders where the application's data values are
  102. displayed and manipulated.
  103. ; -----------------------------------------
  104. <border>
  105. [<<]<client>
  106. [>>]<titlebar>
  107. Border
  108. The Border is the frame around a window. When the
  109. window has the focus, the border is a double line.
  110. When a different window has the focus, the border
  111. is a single line.
  112.  
  113. The window's [..Scroll Bars]<scrollbar>, if any, are positioned
  114. in the right and bottom parts of the border.
  115. ; -----------------------------------------
  116. <titlebar>
  117. [<<]<border>
  118. [>>]<statusbar>
  119. Title Bar
  120. The Title Bar is at the top of the window and 
  121. contains the window's title. When the window
  122. has the focus, the title is highlighted. The
  123. Title Bar includes these items as well:
  124.  
  125.   [..Control Box]<controlbox>
  126.   [..Minimize Box]<minbox>
  127.   [..Maximize Box]<maxbox>
  128.   [..Restore Box]<restorebox> 
  129.  
  130. You can move the window with the mouse by clicking
  131. the title bar and dragging the window to its new
  132. location.
  133. ; -----------------------------------------
  134. <statusbar>
  135. [<<]<titlebar>
  136. [>>]<scrollbar>
  137. Status Bar
  138. The Status Bar is at the bottom of the application window.
  139. It displays the time and brief contextual messages about
  140. the menus and other application-dependent features.
  141. ; ----------------------------------------- 
  142. <scrollbar>
  143. [<<]<statusbar>
  144. [>>]<controlbox>
  145. Scroll Bars
  146. You use Scroll Bars to scroll a window's data with the
  147. mouse. A window can have one or two Scroll Bars - one
  148. at the right and one at the bottom parts of the
  149. window's Border. The Scroll Bar at the right scrolls
  150. the document's data up and down.  The Scroll Bar on
  151. the bottom scrolls the window's data right and left.
  152.  
  153. To scroll a window a line at a time, click the arrow
  154. tokens at either end of the Scroll Bar. The Scroll Bar
  155. includes a slider box that indicates the relative
  156. position of the window's display with respect to the
  157. total document. You can page to an approximate position
  158. within the document by clicking inside the Scroll Bar.
  159. You can drag the slider box in either direction to
  160. scroll the document.
  161. ; -----------------------------------------
  162. <controlbox>
  163. [<<]<scrollbar>
  164. [>>]<minbox>
  165. Control Box
  166. The Control Box is indicated by the character (≡) at
  167. the left end of the window's [..Title Bar]<titlebar>. You can
  168. click it to select the System Menu or double click
  169. it to close the window.
  170. ; -----------------------------------------
  171. <minbox>
  172. [<<]<controlbox>
  173. [>>]<maxbox>
  174. Minimize Box
  175. The Minimize Box is the  token at the right 
  176. end of the window's [..Title Bar]<titlebar>.
  177.  
  178. When you click on the Minimize Box, the window
  179. is reduced to an icon at the bottom of the
  180. [..Application Window]<Application>
  181. ; -----------------------------------------
  182. <maxbox>
  183. [<<]<minbox>
  184. [>>]<restorebox>
  185. Maximize Box
  186. The Maximize Box is the  token at the right 
  187. end of the window's [..Title Bar]<titlebar>.
  188.  
  189. When you click on the Maximize Box, the window
  190. grows to occupy the entire [..Client Area]<client> of the
  191. [..Application Window]<Application>
  192. ; -----------------------------------------
  193. <restorebox>
  194. [<<]<maxbox>
  195. [>>]<sizebox>
  196. Restore Box
  197. The Restore Box is the  token character at the right
  198. end of a minimized window's [..Title Bar]<titlebar> and the  token
  199. character at the right end of a maximized window's
  200. Title Bar. You click the Restore Box to restore the
  201. window to the position and size it had before it was
  202. minimized or maximized.
  203. ; -----------------------------------------
  204. <sizebox>
  205. [<<]<restorebox>
  206. Resize Box
  207. The Resize Box is the lower right corner of the
  208. window's border. To change the window's size,
  209. drag the Resize Box. The window's upper left
  210. coordinates remain the same, and the lower right
  211. coordinates change as you drag the mouse around.
  212. ; -----------------------------------------
  213. <Menubar>
  214. [<<]<application>
  215. [>>]<Pulldowns>
  216. The Action Bar
  217. To select the action bar, do one of these:
  218.   1. Press F10
  219.   2. Press and release the Alt key
  220.   3. Press Alt+the letter that is highlighted 
  221.      in a menu's title on the action bar. The 
  222.      selected menu will pull down.
  223.   4. Click the action bar. If you click a 
  224.      pull-down menu selection's title, that 
  225.      menu will pull down.
  226.  
  227. To exit from the action bar and return to the
  228. document or application window, do one of these:
  229.   1. Press Esc
  230.   2. Press and release the Alt key
  231. ; -----------------------------------------
  232. ;
  233. ;  Following are the Help system windows
  234. ;
  235. ; -----------------------------------------
  236. <HelpHelp>
  237. [<<]<Help>
  238. [>>]<ExtHelp>
  239. Help for Help
  240. Getting Into the Help System
  241. ----------------------------
  242. There are three ways to get into the Help system:
  243.  
  244.  1. Execute commands on the [..Help]<Help> menu
  245.  2. Press F1
  246.  3. Press the Help command button on a dialog box.
  247.  
  248. Contextual Help (F1)
  249. --------------------
  250. The F1 key provides contextual help--help for the
  251. part of the application that currently has the
  252. focus. You can press F1 with the action bar selected, 
  253. a pull-down menu displayed, a field on a dialog box
  254. selected, or a document window in focus.
  255.  
  256. The Help Command Button
  257. -----------------------
  258. The Help command button on a dialog box displays
  259. information about the dialog box and its purpose.
  260. The help window that displays when you press F1 with
  261. a dialog box field selected relates to the field
  262. itself.
  263.  
  264. References to Other Help Windows
  265. --------------------------------
  266. A Help window can include a reference to another
  267. help window. That reference is highlighted like
  268. this: 
  269.  
  270.     [..Help]<Help>
  271.  
  272. You can Tab to the highlighted reference and press
  273. the Enter key to select the referenced help window.
  274. You can select it with the mouse by double-clicking
  275. on it.
  276.  
  277. Definitions
  278. -----------
  279. Some references, such as [**function key]<shortcut>, are
  280. definitions of terms. These definitions are
  281. highlighted the same as references. When you select
  282. the definition, a window displays in the upper left
  283. corner of the desktop. The window contains the
  284. definition of the selected term and stays in view
  285. until you release the Enter key or the mouse
  286. button.
  287.  
  288. Command Buttons on the Help Windows
  289. -----------------------------------
  290. Each help window contains these [..command buttons]<cmdbuttons>:
  291.  
  292.   Close  This button closes the help window and
  293.          exits from the help system.
  294.   Back   This button changes to the help window
  295.          that you viewed before the current one.
  296.   Prev   This button changes to the help window
  297.          that logically preceeds the current one.
  298.   Next   This button changes to the help window
  299.          that logically follows the current one.
  300.  
  301. Exiting from the Help System
  302. ----------------------------
  303. You exit from the Help system by closing the current
  304. help window in one of these three ways:
  305.  
  306.   1. Press the Esc key
  307.   2. Use the Close command button on the Help
  308.      window.
  309.   5. Double click the window's [..Control Box]<controlbox>.
  310.   4. Close the help window from its [..System Menu]<sysmenu>.
  311.  
  312. ; -----------------------------------------
  313. <ExtHelp>
  314. [<<]<HelpHelp>
  315. [>>]<KeysHelp>
  316. Extended Help
  317. The MEMOPAD program has few features and procedures
  318. that are not taken directly from the SAA/CUA
  319. interface that D-Flat implements. The [..Log Messages]<ID_LOG>
  320. and [..Display]<ID_DISPLAY> selections on the [..Options]<Options> menu are
  321. unique to MEMOPAD and would not necessarily be in
  322. an application. Some of the Display features would
  323. be useful to a user who is not developing D-Flat
  324. programs. Others, such as the [..Title]<ID_TITLE>, [..Border]<ID_BORDER>,
  325. [..Status Bar]<ID_STATUSBAR>, and [..Texture]<ID_TEXTURE> check boxes on the [..Display]<Display>
  326. dialog box, are to allow a programmer to see how
  327. the screen looks with these features enabled and
  328. disabled. 
  329. ; -----------------------------------------
  330. <KeysHelp>
  331. [<<]<ExtHelp>
  332. [>>]<HelpIndex>
  333. Keys Help
  334. From the Desktop
  335. ----------------
  336.   Alt+Hyphen      Open the desktop's [..SystemMenu]<sysmenu>.
  337.   F10 or Alt      Activate the [..ActionBar]<menubar>.
  338.   Esc             Deactivate the Action Bar.
  339.   Alt+letter      Open the associated [..Pull-down menu]<Pulldowns>.
  340.   Alt+F6          Change focus to another document.
  341.   Alt+X           Exit the application.
  342.  
  343. From a [..Document Window]<docwindow>
  344. ----------------------
  345.   Alt+Spacebar    Open the window's [..System Menu]<sysmenu>
  346.   Alt+S           Save the document to a disk file.
  347.  
  348. [..Edit Box]<editbox> Keys
  349. -----------
  350.   Arrow keys      Move the cursor one character.
  351.   Ctrl+arrow      Move the cursor one word.
  352.   Del             Delete character to the right of
  353.                   the cursor. If a [..block]<Block> is marked,
  354.                   delete the block.
  355.   Backspace       Delete character to the left of
  356.                   the cursor. If a block is marked,
  357.                   delete the block.
  358.   Alt+BackSpace   Undo the last block deletion.
  359.   PgUp/PgDn       Scroll forward and back one page.
  360.   Ctrl+PgUp/PgDn  Scroll horizontally one page.
  361.   Home/End        Move the cursor to the beginning
  362.                   and end of the line.
  363.   Ctrl+Home/End   Move the cursor to the beginning
  364.                   and end of the document.
  365.   Alt+P           Form a paragraph from the marked
  366.                   block. If no block is marked, form 
  367.                   a paragraph from the cursor 
  368.                   position to the next blank line.
  369.   Ins             Toggle Insert/Overstrike mode.
  370.   Tab             Tab to the next Tab Stop position.
  371.  
  372. [..Clipboard]<clipboard> Keys
  373. --------------
  374.   Shift+Del       [..Cut]<ID_CUT> the marked text to the
  375.                   Clipboard
  376.   Ctrl+Ins        [..Copy]<ID_COPY> the marked text to the
  377.                   Clipboard.
  378.   Shift+Ins       [..Paste]<ID_PASTE> the contents of the
  379.                   Clipboard into the document.
  380.  
  381. [..Dialog Box]<dialog> Keys
  382. ---------------
  383.   Tab             Move to the next control.
  384.   Shift+Tab       Move to the previous control.
  385.   Enter           Execute the control.
  386.   Esc             Close the Dialog Box with no
  387.                   action.
  388.  
  389. [..Listbox]<listbox> Keys
  390. ------------
  391.   Up/down arrows  Move the selection cursor
  392.   Ctrl+arrows     Select a group of entries.
  393.   Enter           Choose the selected entry
  394.                   or entries.
  395.   Shift+F8        Toggle Add mode.
  396.   Spacebar        In Add mode, select/deselect an  
  397.                   entry.
  398. ; -----------------------------------------
  399. <HelpIndex>
  400. [<<]<KeysHelp>
  401. Index of Help Titles
  402. Select (Tab then Enter or double-click) from these 
  403. titles to view the help screens related to each one.
  404.  
  405.   [..Application Window]<Application>
  406.   [..Action Bar]<Menubar>
  407.   [..Pull-down Menus]<Pulldowns>
  408.     [..The File Menu]<File>
  409.     [..The Edit Menu]<Edit>
  410.     [..The Search Menu]<Search>
  411.     [..The Utilities Menu]<Utilities>
  412.     [..The Options Menu]<Options>
  413.     [..The Window Menu]<Window>
  414.     [..The Help Menu]<Help>
  415.   [..Dialog Boxes]<Dialog>
  416.     [..The File Open Dialog Box]<FileOpen>
  417.     [..The Save As Dialog Box]<SaveAs>
  418.     [..The MsgBox Dialog Box]<MsgBox>
  419.     [..The Display Dialog Box]<Display>
  420.     [..The Windows Dialog Box]<Windows>
  421.     [..The Log Dialog Box]<Log>
  422.   [..The Help System]<Help>
  423.     [..Help for help...]<ID_HELPHELP>
  424.     [..Extended help...]<ID_EXTHELP>
  425.     [..Keys help...]<ID_KEYSHELP>
  426.     [..Help index...]<ID_HELPINDEX>
  427.     [..Reload Help Database]<ID_LOADHELP>
  428.  
  429. ; -----------------------------------------
  430. ;
  431. ;  Following are menu command help windows
  432. ;
  433. ; -----------------------------------------
  434. <ID_NEW>
  435. [<<]<File>
  436. [>>]<ID_OPEN>
  437. The New Command
  438. This command opens a new, untitled document
  439. window. An untitled document is one that has 
  440. not been given a file name. When you use the 
  441. [..Save]<ID_SAVE> or [..Save as]<ID_SAVEAS> command on the File menu the 
  442. document gets a file name.
  443. ; -----------------------------------------
  444. <ID_OPEN>
  445. [<<]<ID_NEW>
  446. [>>]<ID_SAVE>
  447. The Open Command
  448. This command opens an existing document and loads
  449. it into a window. You select the document by filling
  450. in the [..File Open]<FileOpen> dialog box.
  451. ; -----------------------------------------
  452. <ID_SAVE>
  453. [<<]<ID_OPEN>
  454. [>>]<ID_SAVEAS>
  455. The Save Command
  456. This command saves the document in the currently
  457. active document window into a disk file. The file
  458. name is the same as when the file was loaded. If
  459. the window contains an untitled document, this
  460. command works just like the [..Save as]<ID_SAVEAS> command.
  461. ; -----------------------------------------
  462. <ID_SAVEAS>
  463. [<<]<ID_SAVE>
  464. [>>]<ID_DELETEFILE>
  465. The Save As Command
  466. This command allows you to save the document in the
  467. currently active document window under a new file
  468. name. You specify the file's name by filling in the
  469. fields on the [..Save as]<SaveAs> dialog box. 
  470.  
  471. The new file name becomes the title of the
  472. currently active document window where the file is
  473. displayed.
  474. ; -----------------------------------------
  475. <ID_DELETEFILE>
  476. [<<]<ID_SAVEAS>
  477. [>>]<ID_PRINT>
  478. The Delete Command
  479. Use this command to delete the text file displayed
  480. in the active editbox window.
  481. ; -----------------------------------------
  482. <ID_PRINT>
  483. [<<]<ID_DELETEFILE>
  484. [>>]<ID_PRINTSETUP>
  485. The Print Command
  486. This command prints the document in the
  487. currently-selected document window.
  488. ; -----------------------------------------
  489. <ID_PRINTSETUP>
  490. [<<]<ID_PRINT>
  491. [>>]<ID_DOS>
  492. The Print Setup Command
  493. This command displays the [..Print Setup]<PrintSetup> dialog
  494. box to allow you to change the printer port
  495. and margins for the printout.
  496. ; -----------------------------------------
  497. <ID_DOS>
  498. [<<]<ID_PRINT>
  499. [>>]<ID_EXIT>
  500. The DOS Command
  501. This command "shells" out to DOS. You return to the
  502. application from DOS by executing the DOS exit
  503. command at the DOS command line. 
  504. ; -----------------------------------------
  505. <ID_EXIT>
  506. [<<]<ID_DOS>
  507. The Exit Command
  508. This command exits to DOS from the application. If
  509. there are any changed documents that you have not
  510. saved, the program will ask if you want to save
  511. them and allow you to do so, one at a time.
  512. ; -----------------------------------------
  513. <ID_UNDO>
  514. [<<]<Edit>
  515. [>>]<ID_CUT>
  516. The Undo Command
  517. This command "undoes" the most recent [..Delete]<ID_DELETETEXT> or
  518. [..Clear]<ID_CLEAR> command. The text that was deleted by one of
  519. these commands is written into the document at the
  520. current cursor location.
  521. ; -----------------------------------------
  522. <ID_CUT>
  523. [<<]<ID_UNDO>
  524. [>>]<ID_COPY>
  525. The Cut Command
  526. This command is active only when the current
  527. document window has a [..marked block]<Block>. The command
  528. deletes the text in the marked block, copies it to
  529. the [..Clipboard]<Clipboard>, and closes up the space in the
  530. document that the text previously occupied.
  531. ; ----------------------------------------- 
  532. <ID_COPY>
  533. [<<]<ID_CUT>
  534. [>>]<ID_PASTE>
  535. The Copy Command
  536. This command is active only when the current
  537. document window has a [..marked block]<Block>. The command
  538. copies the text in the marked block to the 
  539. [..Clipboard]<Clipboard>, and closes up the space in the document 
  540. that the text previously occupied.
  541. ; -----------------------------------------
  542. <ID_PASTE>
  543. [<<]<ID_COPY>
  544. [>>]<ID_CLEAR>
  545. The Paste Command
  546. This command is active only when the [..Clipboard]<Clipboard>
  547. contains text. The command inserts the text from the
  548. Clipboard into the currently active document window
  549. at the current cursor location.
  550. ; -----------------------------------------
  551. <ID_CLEAR>
  552. [<<]<ID_PASTE>
  553. [>>]<ID_DELETETEXT>
  554. The Clear Command
  555. This command is active only when the current
  556. document window has a [..marked block]<Block>. The command
  557. deletes the block of text, leaving empty space in
  558. the document where the text had been.
  559.  
  560. You can undo the text deletion with the
  561. [..Undo]<ID_UNDO> command.
  562. ; -----------------------------------------
  563. <ID_DELETETEXT>
  564. [<<]<ID_CLEAR>
  565. [>>]<ID_PARAGRAPH>
  566. The Delete Command
  567. This command is active only when the current
  568. document window has a [..marked block]<Block>. The command
  569. deletes the block of text, closing the space in the
  570. document where the text had been.
  571.  
  572. You can undo the text deletion with the
  573. [..Undo]<ID_UNDO> command.
  574. ; -----------------------------------------
  575. <ID_PARAGRAPH>
  576. [<<]<ID_DELETETEXT>
  577. The Paragraph Command
  578. This command reforms a paragraph beginning at the
  579. current keyboard cursor position. The end of the
  580. paragraph is the last line preceding the next blank
  581. line.
  582.  
  583. If a [..marked block]<Block> is defined, the
  584. Paragraph command forms a new paragraph from the
  585. block without regard to the cursor position.
  586. ; -----------------------------------------
  587. <ID_SEARCH>
  588. [<<]<Search>
  589. [>>]<ID_REPLACE>
  590. The Search Command
  591. This command opens the [..Search Text]<SearchTextDB> Dialog Box to
  592. allow you to search the text for a
  593. matching string.
  594. ; -----------------------------------------
  595. <ID_REPLACE>
  596. [<<]<ID_SEARCH>
  597. [>>]<ID_SEARCHNEXT>
  598. The Replace Command
  599. This command opens the [..Replace Text]<ReplaceText> Dialog Box to
  600. allow you to search the text for a
  601. matching string and replace it with a 
  602. different text string.
  603. ; -----------------------------------------
  604. <ID_SEARCHNEXT>
  605. [<<]<ID_REPLACE>
  606. The Next Command
  607. This command continues the most recent [..Search]<ID_SEARCH>
  608. command beginning at the current cursor position.
  609. ; -----------------------------------------
  610. <ID_INSERT>
  611. [<<]<Options>
  612. [>>]<ID_WRAP>
  613. The Insert Toggle
  614. This [**toggle]<toggle> command turns the editor's insert mode
  615. on and off. When insert mode is on, the editor
  616. inserts the text that you write. Otherwise each
  617. character typed overwrites the one at the current
  618. cursor position.
  619. ; -----------------------------------------
  620. <ID_WRAP>
  621. [<<]<ID_INSERT>
  622. [>>]<ID_TABS>
  623. The Word Wrap Toggle
  624. This [**toggle]<toggle> command turns the editor's word wrap
  625. feature on and off. When word wrap is on, the editor
  626. will wrap words as you type at the right margin of
  627. the document window. When word wrap is off, the
  628. editor will scroll the display horizontally as you
  629. type beyond the right margin. 
  630. ; -----------------------------------------
  631. <ID_TAB?>
  632. [<<]<ID_WRAP>
  633. [>>]<ID_DISPLAY>
  634. The Tabs Command
  635. This command allows you to
  636. change the editor's tab settings.
  637. ; -----------------------------------------
  638. <ID_DISPLAY>
  639. [<<]<ID_TABS>
  640. [>>]<ID_LOG>
  641. The Display Command
  642. This command displays the [..Display]<Display> dialog box to
  643. allow you to modify the screen's colors and
  644. configuration.
  645. ; -----------------------------------------
  646. <ID_LOG>
  647. [<<]<ID_DISPLAY>
  648. [>>]<ID_SAVEOPTIONS>
  649. The Log Messages Command
  650. This command is used primarily for debugging. It
  651. opens the [..Log Message]<Log> dialog box to allow the
  652. programmer to select the D-Flat messages to log and
  653. to turn message logging on and off.
  654. ; -----------------------------------------
  655. <ID_SAVEOPTIONS>
  656. [<<]<ID_LOG>
  657. The Save Options Command
  658. This command saves the current options in a
  659. configuration file that the application reads when
  660. it first starts up.
  661. ; -----------------------------------------
  662. <ID_CLOSEALL>
  663. [<<]<Window>
  664. [>>]<ID_WINDOW>
  665. The Close All Command
  666. This command closes all the document windows on the
  667. desktop.
  668. ; -----------------------------------------
  669. <ID_WINDOW>
  670. [<<]<ID_CLOSEALL>
  671. [>>]<ID_MOREWINDOWS>
  672. The Open Window List
  673. The [..Window]<Window> menu displays a list of open document
  674. windows. You can select one of them as the current
  675. active window by selecting its title on the Window
  676. menu. When the menu first displays, the active
  677. window has a check mark (√) next to it.
  678. <ID_MOREWINDOWS>
  679. [<<]<ID_WINDOW>
  680. More Windows
  681. This command indicates that there are more open document
  682. windows than the [..Window]<Window> menu can display.
  683. Choose this command to see the [..Windows]<Windows> dialog box.
  684. ; -----------------------------------------
  685. <ID_HELPHELP>
  686. [<<]<Help>
  687. [>>]<ID_EXTHELP>
  688. Help for Help
  689. This command describes how to use the Help system.
  690. ; -----------------------------------------
  691. <ID_EXTHELP>
  692. [<<]<ID_HELPHELP>
  693. [>>]<ID_KEYSHELP>
  694. Extended Help
  695. Extended Help displays information about the
  696. application.
  697. ; -----------------------------------------
  698. <ID_KEYSHELP>
  699. [<<]<ID_EXTHELP>
  700. [>>]<ID_HELPINDEX>
  701. Keys Help
  702. This command displays a help window that shows the
  703. keystrokes that you use to operate the application.
  704. ; -----------------------------------------
  705. <ID_HELPINDEX>
  706. [<<]<ID_KEYSHELP>
  707. [>>]<ID_LOADHELP>
  708. Help Index
  709. The Help index lists the subjects covered in the
  710. Help database. You can go directly to a subject from
  711. the index by selecting the subject's name. 
  712. ; -----------------------------------------
  713. <ID_LOADHELP>
  714. [<<]<ID_HELPINDEX>
  715. [>>]<ID_ABOUT>
  716. Reload Help Database
  717. This command allows you to reload the Help
  718. database. It is useful when you use the
  719. Memopad program to modify its Help database.
  720. You can change and save the MEMOPAD.TXT file,
  721. use this command to reload it, then use the
  722. Help system to view the results. Without this
  723. command, your changes would corrupt the
  724. current Memopad's picture of the database
  725. with respect to its pointers.
  726.  
  727. You must delete the MEMOPAD.HLP compressed
  728. help database in order for this program to
  729. load the most recent changes.
  730. ; -----------------------------------------
  731. <ID_ABOUT>
  732. [<<]<ID_LOADHELP>
  733. The About Command
  734. This command displays a message that tells you what
  735. the application is.
  736. ; -----------------------------------------
  737. <ID_FILENAME>
  738. [>>]<ID_FILES>
  739. The Filename Field
  740.  
  741. On the Open File dialog box:
  742.     Enter the name of the file you wish to
  743.     open into a document window, or enter
  744.     the file specification with wild cards
  745.     to display a list of files in the
  746.     [..Files]<ID_FILES> field.
  747.  
  748. On the Save As dialog box:
  749.     Enter the name with which you wish to
  750.     save the file.
  751. ; -----------------------------------------
  752. <ID_FILES>
  753. [<<]<ID_FILENAME>
  754. [>>]<ID_DRIVE>
  755. The Files Field
  756. Select a file from the listbox by using one
  757. of these methods:
  758.  
  759. Keyboard:  Move the selection cursor to
  760.            the file name and press Enter.
  761.  
  762. Mouse:     Double-click the file name.
  763. ; -----------------------------------------
  764. <ID_DRIVE>
  765. [<<]<ID_FILES>
  766. The Directories Field
  767. Use this listbox to select a different
  768. drive or subdirectory. Select a drive or
  769. subdirectory from the listbox by using one
  770. of these methods:
  771.  
  772. Keyboard:  Move the selection cursor to
  773.            the drive or subdirectory and 
  774.            press Enter.
  775.  
  776. Mouse:     Double-click the drive or
  777.            subdirectory.
  778. ; -----------------------------------------
  779. <ID_PRINTERPORT>
  780. [<<]<PrintSetup>
  781. [>>]<ID_LEFTMARGIN>
  782. The Printer Port Combo Box
  783. Use this combo box to change the printer
  784. port and to set the report's margins.
  785. ; -----------------------------------------
  786. <ID_LEFTMARGIN>
  787. [<<]<ID_PRINTERPORT>
  788. [>>]<ID_RIGHTMARGIN>
  789. The Left Margin Spin Button
  790. Change the left margin by increasing
  791. and decreasing the value in this 
  792. spin box.
  793. ; -----------------------------------------
  794. <ID_RIGHTMARGIN>
  795. [<<]<ID_LEFTMARGIN>
  796. [>>]<ID_TOPMARGIN>
  797. The Right Margin Spin Button
  798. Change the right margin by increasing
  799. and decreasing the value in this 
  800. spin box.
  801. ; -----------------------------------------
  802. <ID_TOPMARGIN>
  803. [<<]<ID_RIGHTMARGIN>
  804. [>>]<ID_BOTTOMMARGIN>
  805. The Top Margin Spin Button
  806. Change the top margin by increasing
  807. and decreasing the value in this 
  808. spin box.
  809. ; -----------------------------------------
  810. <ID_BOTTOMMARGIN>
  811. [<<]<ID_TOPMARGIN>
  812. The Bottom Margin Spin Button
  813. Change the bottom margin by increasing
  814. and decreasing the value in this 
  815. spin box.
  816. ; -----------------------------------------
  817. <ID_SEARCHFOR>
  818. [>>]<ID_REPLACEWITH>
  819. The Search For Text Entry Box
  820. Enter the text you want to search for in this
  821. text box. Press Enter or the OK command button
  822. to begin the search. Press Esc to forget it.
  823. Use the [..Match Upper/Lower Case Check Box]<ID_MATCHCASE> to
  824. select whether the search will match only if
  825. the case matches or if the search is insensitive
  826. to the case of the two strings.
  827. ; -----------------------------------------
  828. <ID_REPLACEWITH>
  829. [<<]<ID_SEARCHFOR>
  830. [>>]<ID_MATCHCASE>
  831. The Replace With Text Entry Box
  832. Enter the text string that will replace
  833. the matching text string in the
  834. [..Search For Text Entry Box]<ID_SEARCHFOR>.
  835. ; -----------------------------------------
  836. <ID_MATCHCASE>
  837. [<<]<ID_REPLACEWITH>
  838. [>>]<ID_REPLACEALL>
  839. The Match Upper/Lower Case Check Box
  840. Use this checkbox to select whether the search 
  841. will match only if the case matches or if the 
  842. search is insensitive to the case of the two 
  843. strings.
  844. ; -----------------------------------------
  845. <ID_REPLACEALL>
  846. [<<]<ID_MATCHCASE>
  847. The Replace Every Match Check Box
  848. Use this checkbox to select whether the search 
  849. will replace every match in the document.
  850. ; -----------------------------------------
  851. <ID_TITLE>
  852. [<<]<Display>
  853. [>>]<ID_BORDER>
  854. The Title Check Box
  855. Select this Check Box to toggle the application
  856. window's title on and off. Without a title, the
  857. window also loses its [..Control Box]<controlbox>.
  858. ; -----------------------------------------
  859. <ID_BORDER>
  860. [<<]<ID_TITLE>
  861. [>>]<ID_STATUSBAR>
  862. The Border Check Box
  863. Select this Check Box to toggle the application
  864. window's border on and off. Without a border, the
  865. window also loses its [..Status Bar]<statusbar>.
  866. ; -----------------------------------------
  867. <ID_STATUSBAR>
  868. [<<]<ID_BORDER>
  869. [>>]<ID_TEXTURE>
  870. The Status Bar Check Box
  871. Select this Check Box to toggle the application
  872. window's [..Status Bar]<statusbar> on and off.
  873. ; -----------------------------------------
  874. <ID_TEXTURE>
  875. [<<]<ID_STATUSBAR>
  876. [>>]<ID_COLOR>
  877. The Texture Check Box
  878. Select this Check Box to toggle the application
  879. window's background texture on and off.
  880. ; -----------------------------------------
  881. <ID_COLOR>
  882. [<<]<ID_TEXTURE>
  883. [>>]<ID_MONO>
  884. The Color Option Button
  885. Select this option for a color display.
  886. ; -----------------------------------------
  887. <ID_MONO>
  888. [<<]<ID_COLOR>
  889. [>>]<ID_REVERSE>
  890. The Mono Option Button
  891. Select this option for a monochrome display.
  892. ; -----------------------------------------
  893. <ID_REVERSE>
  894. [<<]<ID_MONO>
  895. [>>]<ID_25LINES>
  896. The Reverse Option Button
  897. Select this option for a reverse monochrome
  898. display. You might find that this option
  899. works well with the LCD screens of some laptop
  900. computers, particularly when you turn off the
  901. [..Texture]<ID_TEXTURE> check box.
  902. ; -----------------------------------------
  903. <ID_25LINES>
  904. [<<]<ID_REVERSE>
  905. [>>]<ID_43LINES>
  906. The 25 Lines Option Button
  907. Use this button to select a 25-line display.
  908. ; -----------------------------------------
  909. <ID_43LINES>
  910. [<<]<ID_25LINES>
  911. [>>]<ID_50LINES>
  912. The 43 Lines Option Button
  913. Use this button to select a 43-line display.
  914. (EGA and VGA)
  915. ; -----------------------------------------
  916. <ID_50LINES>
  917. [<<]<ID_43LINES>
  918. The 50 Lines Option Button
  919. Use this button to select a 50-line display.
  920. (VGA only)
  921. ; -----------------------------------------
  922. <ID_LOGLIST>
  923. [<<]<Options>
  924. [>>]<ID_LOGGING>
  925. The Messages Listbox
  926. This is a list of D-Flat messages that
  927. you can log when the [..Logging]<ID_LOGGING> checkbox is
  928. selected. The list is a [..Multiple-Selection]<MultiSel>
  929. listbox. 
  930. ; -----------------------------------------
  931. <ID_LOGGING> [<<]<ID_LOGLIST> The Logging
  932. CheckBox This checkbox turns message 
  933. logging on and off. ;
  934. -----------------------------------------
  935. <TEXTBOX> The TEXTBOX Window Class
  936.  
  937.      ======== Text needed =========
  938.  
  939. ; -----------------------------------------
  940. <LISTBOX>
  941. The LISTBOX Window Class
  942.  
  943.      ======== Text needed =========
  944.  
  945. ; -----------------------------------------
  946. <EDITBOX>
  947. The EDITBOX Window Class
  948.  
  949.      ======== Text needed =========
  950.  
  951. ; -----------------------------------------
  952. <Pulldowns>
  953. [<<]<menubar>
  954. [>>]<File>
  955. Pull-down Menus
  956. Pull-down menus contain the commands to operate
  957. the program. Read about the [..Action Bar]<menubar> to see
  958. how to select the pull-down menus. Following
  959. is a list of the pull-down menus.
  960.  
  961.     [..The File Menu]<File>
  962.     [..The Edit Menu]<Edit>
  963.     [..The Search Menu]<Search>
  964.     [..The Options Menu]<Options>
  965.     [..The Window Menu]<Window>
  966.     [..The Help Menu]<Help>
  967.  
  968. The [..System Menu]<sysmenu> is another kind of pull-down menu.
  969. ; -----------------------------------------
  970. <File>
  971. [<<]<Pulldowns>
  972. [>>]<Edit>
  973. The File Menu
  974. The File menu contains commands that
  975. open, save, and print files. The menu
  976. also has the command that exits the
  977. program. Following are the commands
  978. and associated [**function keys]<shortcut>.
  979.  
  980.     [..New]<ID_NEW>
  981.     [..Open]<ID_OPEN>
  982.     [..Save]<ID_SAVE>     (Alt+S)
  983.     [..Save as]<ID_SAVEAS>
  984.     [..Print]<ID_PRINT>
  985.     [..Exit]<ID_EXIT>     (Alt+X or Alt+F4)
  986.  
  987. [**Inactive]<inactive> commands display in a dim font.
  988. ; -----------------------------------------
  989. <Edit>
  990. [<<]<File>
  991. [>>]<Search>
  992. The Edit Menu
  993. The Edit menu contains commands that support
  994. text editing. Following are the commands and 
  995. associated [**function keys]<shortcut>.
  996.  
  997.     [..Undo]<ID_UNDO>          (Alt+BS)
  998.     [..Cut]<ID_CUT>           (Shift+Del)
  999.     [..Copy]<ID_COPY>          (Ctrl+Ins)
  1000.     [..Paste]<ID_PASTE>         (Shift+Ins)
  1001.     [..Clear]<ID_CLEAR>
  1002.     [..Delete]<ID_DELETETEXT>        (Del)
  1003.     [..Paragraph]<ID_PARAGRAPH>     (Alt+P)
  1004.  
  1005. [**Inactive]<inactive> commands display in a dim font.
  1006. ; -----------------------------------------
  1007. <Search>
  1008. [<<]<Edit>
  1009. [>>]<Utilities>
  1010. The Search Menu
  1011. The Search menu allows you to search the text
  1012. for a matching string. The commands are:
  1013.  
  1014.     [..Search]<ID_SEARCH>
  1015.     [..Next]<ID_SEARCHNEXT>    (F3)
  1016. ; -----------------------------------------
  1017. <Utilities>
  1018. [<<]<Search>
  1019. [>>]<Options>
  1020. The Utilities Menu
  1021. The Utilities Menu has two commands that
  1022. demonstrate the use of the PICTUREBOX window
  1023. class. The commands are:
  1024.  
  1025.     [..Calendar]<ID_CALENDAR>
  1026.     [..Bar Chart]<ID_BARCHART>
  1027. ; -----------------------------------------
  1028. <Options>
  1029. [<<]<Utilities>
  1030. [>>]<Window>
  1031. The Options Menu
  1032. The Options menu contains commands that let you
  1033. control the editor's behavior, the video display
  1034. characteristics, and whether to [**log]<logging> messages.
  1035. You can save the options in a configuration file.
  1036. Following are the commands on the Options menu.
  1037.  
  1038.     [..Insert]<ID_INSERT>     (Ins)
  1039.     [..Word wrap]<ID_WRAP>
  1040.     [..Tabs]<ID_TABS>
  1041.     [..Display]<ID_DISPLAY>
  1042.     [..Log Messages]<ID_LOG>
  1043.     [..Save Options]<ID_SAVEOPTIONS>
  1044. ; -----------------------------------------
  1045. <Window>
  1046. [<<]<Options>
  1047. [>>]<Help>
  1048. The Window Menu
  1049. The Window menu has no selections unless the
  1050. [..Application window]<Application> has one or more document
  1051. windows displayed. When documents are displayed,
  1052. the Window menu contains a [..Close All]<ID_CLOSEALL> command
  1053. and an entry for the first nine document windows. 
  1054. You can select a document window from the Window
  1055. menu. If the Application window has more than nine
  1056. document windows, the Window menu has the [**More Windows]<MoreWins>
  1057. command, which displays the [..Windows]<Windows> dialog box.
  1058. ; -----------------------------------------
  1059. <Help>
  1060. [<<]<Window>
  1061. The Help Menu
  1062. The Help menu provides information about the 
  1063. application and the desktop. The selections are:
  1064.  
  1065.     [..Help for help...]<ID_HELPHELP>
  1066.     [..Extended help...]<ID_EXTHELP>
  1067.     [..Keys help...]<ID_KEYSHELP>
  1068.     [..Help index...]<ID_HELPINDEX>
  1069.     [..About...]<ID_ABOUT>
  1070.  
  1071. ; -----------------------------------------
  1072. <sysmenu>
  1073. [<<]<Pulldowns>
  1074. [>>]<ID_SYSRESTORE>
  1075. The System Menu
  1076. Most windows have a system menu. If the window has a
  1077. System Menu, the window will have a [..Control Box]<controlbox>. You
  1078. can select the System Menu by clicking the control
  1079. box or by pressing Alt+Spacebar for the application
  1080. window's system menu and Alt+Hyphen for the system
  1081. menu of other windows. 
  1082.  
  1083. Following are the commands on the System Menu:
  1084.  
  1085.     [..Restore]<ID_SYSRESTORE>
  1086.     [..Move]<ID_SYSMOVE>
  1087.     [..Size]<ID_SYSSIZE>
  1088.     [..Minimize]<ID_SYSMINIMIZE>
  1089.     [..Maximize]<ID_SYSMAXIMIZE>
  1090.     [..Close]<ID_SYSCLOSE>
  1091.  
  1092. ; -----------------------------------------
  1093. <ID_SYSRESTORE>
  1094. [<<]<sysmenu>
  1095. [>>]<ID_SYSMOVE>
  1096. The Restore Command on the System Menu
  1097. This command restores a [..Minimized]<ID_SYSMINIMIZE> or [..Maximized]<ID_SYSMAXIMIZE>
  1098. window to the size and position it had before it
  1099. was minimized or maximized.
  1100.  
  1101. You can also restore a minimized or maximized 
  1102. window by clicking its [..Restore Box]<restorebox>.
  1103. ; -----------------------------------------
  1104. <ID_SYSMOVE>
  1105. [<<]<ID_SYSRESTORE>
  1106. [>>]<ID_SYSSIZE>
  1107. The Move Command on the System Menu
  1108. The Move command lets you move a window with the
  1109. keyboard. Select the command from the System Menu. A
  1110. movable window frame comes into view over the
  1111. window's border. Use the up, down, left, and right
  1112. arrow keys to move the frame to the new window
  1113. position. Press the Enter key when the movable frame
  1114. is where you want to move the window. Press the Esc
  1115. key to ignore the movement.
  1116.  
  1117. You can move a window with the mouse by clicking on
  1118. the window's [..Title Bar]<titlebar> and dragging the window to
  1119. the new location. 
  1120. ; -----------------------------------------
  1121. <ID_SYSSIZE>
  1122. [<<]<ID_SYSMOVE>
  1123. [>>]<ID_SYSMINIMIZE>
  1124. The Size Command on the System Menu
  1125. The Size command lets you re-size a window with the
  1126. keyboard. Select the command from the System Menu. 
  1127. A sizeable window frame comes into view over the
  1128. window's border. Use the up, down, left, and right
  1129. arrow keys to change the frame to the new window
  1130. size. Press the Enter key when the sizeable frame
  1131. is the size you want for the window. Press the Esc
  1132. key to ignore the size change.
  1133.  
  1134. You can re-size a window with the mouse by clicking
  1135. on the window border's [..Resize Box]<sizebox> and dragging the 
  1136. window to the new size.
  1137. ; -----------------------------------------
  1138. <ID_SYSMINIMIZE>
  1139. [<<]<ID_SYSSIZE>
  1140. [>>]<ID_SYSMAXIMIZE>
  1141. The Minimize Command on the System Menu
  1142. This command minimizes the window to an icon at the
  1143. bottom of the application window.
  1144.  
  1145. You can minimize a window with the mouse by clicking
  1146. on the window's [..Minimize Box]<minbox>.
  1147.  
  1148. The [..Restore]<ID_SYSRESTORE> command restores a minimized window to
  1149. the size and position it had before it was
  1150. minimized.
  1151. ; -----------------------------------------
  1152. <ID_SYSMAXIMIZE>
  1153. [<<]<ID_SYSMINIMIZE>
  1154. [>>]<ID_SYSCLOSE>
  1155. The Maximize Command on the System Menu
  1156. This command maximizes the window to occupy all of
  1157. the application window's client area.
  1158.  
  1159. You can maximize a window with the mouse by clicking
  1160. on the window's [..Maximize Box]<maxbox>.
  1161.  
  1162. The [..Restore]<ID_SYSRESTORE> command restores a maximized window to
  1163. the size and position it had before it was
  1164. maximized.
  1165. ; -----------------------------------------
  1166. <ID_SYSCLOSE>
  1167. [<<]<ID_SYSMAXIMIZE>
  1168. The Close Command on the System Menu
  1169. This command closes the window with which the System
  1170. Menu is associated.
  1171.  
  1172. You can also close the window by double-clicking the
  1173. [..Control Box]<controlbox> or pressing Ctrl+F4.
  1174. ; -----------------------------------------
  1175. ;
  1176. ;  Following are dialog box help windows
  1177. ;
  1178. ; -----------------------------------------
  1179. <Dialog>
  1180. [>>]<cmdbuttons>
  1181. Dialog Boxes
  1182. Dialog Boxes allow you to enter data into the
  1183. application. A Dialog Box consists of these
  1184. controls:
  1185.  
  1186.     [..Command Buttons]<cmdbuttons>
  1187.     [..Check Boxes]<checkboxes>
  1188.     [..Option Buttons]<optbuttons>
  1189.     [..Edit Boxes]<editboxes>
  1190.     [..List Boxes]<listboxes>
  1191.     [..Multiple-Selection Listboxes]<MultiSel>
  1192.     [..Combo Boxes]<combobox>
  1193.     [..Spin Buttons]<spinbutton>
  1194.  
  1195. Move from control to control by using the Tab key
  1196. or by pressing Alt+ the highlighted character in
  1197. the control's label. Execute a control by pressing
  1198. the Enter key. 
  1199.  
  1200. Exit the Dialog Box and accept its data entries by
  1201. executing the OK command button. 
  1202.  
  1203. Exit the Dialog Box and reject its data entries by
  1204. executing the Cancel command button. 
  1205. ; -----------------------------------------
  1206. <cmdbuttons>
  1207. [<<]<Dialog>
  1208. [>>]<checkboxes>
  1209. Command Buttons
  1210. Select a command button to execute its
  1211. command by using one of these procedures:
  1212.  
  1213.   1. Click the button.
  1214.   2. Press Alt+ the shortcut key.
  1215.   3. Tab to the button and press Enter.
  1216. ; -----------------------------------------
  1217. <checkboxes>
  1218. [<<]<cmdbuttons>
  1219. [>>]<optbuttons>
  1220. Check Boxes
  1221. A check box can be on [X] or off [ ].
  1222. Toggle the check box with one of these
  1223. procedures:
  1224.  
  1225.   1. Click the check box.
  1226.   2. Press Alt+ the shortcut key.
  1227. ; -----------------------------------------
  1228. <optbuttons>
  1229. [<<]<checkboxes>
  1230. [>>]<editboxes>
  1231. Option Buttons
  1232. Option buttons are in groups of 2 or
  1233. more. One option button in a group
  1234. is on () and the others are off ( ).
  1235. Select the option button with one of
  1236. these procedures:
  1237.  
  1238.   1. Click the option button.
  1239.   2. Press Alt+ the shortcut key.
  1240. ; -----------------------------------------
  1241. <editboxes>
  1242. [<<]<optbuttons>
  1243. [>>]<listboxes>
  1244. Edit Boxes
  1245.  
  1246.      ======== Text needed =========
  1247.  
  1248. ; -----------------------------------------
  1249. <listboxes>
  1250. [<<]<editboxes>
  1251. [>>]<MultiSel>
  1252. List Boxes
  1253.  
  1254.      ======== Text needed =========
  1255.  
  1256. ; -----------------------------------------
  1257. <MultiSel>
  1258. [<<]<listboxes>
  1259. [>>]<combobox>
  1260. Multiple-Selection Listboxes
  1261.  
  1262.      ======== Text needed =========
  1263.  
  1264. ; -----------------------------------------
  1265. <combobox>
  1266. [<<]<MultiSel>
  1267. [>>]<spinbutton>
  1268. Combo Boxes
  1269.  
  1270.      ======== Text needed =========
  1271.  
  1272. ; -----------------------------------------
  1273. <spinbutton>
  1274. [<<]<combobox>
  1275. Spin Buttons
  1276.  
  1277.      ======== Text needed =========
  1278.  
  1279. ; -----------------------------------------
  1280. <FileOpen>
  1281. The File Open Dialog Box
  1282.  
  1283.      ======== Text needed =========
  1284.  
  1285. ; -----------------------------------------
  1286. <SaveAs>
  1287. The Save As Dialog Box
  1288.  
  1289.      ======== Text needed =========
  1290.  
  1291. ; -----------------------------------------
  1292. <PrintSetup>
  1293. The Print Setup Dialog Box
  1294.  
  1295.      ======== Text needed =========
  1296.  
  1297. ; -----------------------------------------
  1298. <SearchTextDB>
  1299. The Search Text Dialog Box
  1300.  
  1301.      ======== Text needed =========
  1302.  
  1303. ; -----------------------------------------
  1304. <ReplaceTextDB>
  1305. The Replace Text Dialog Box
  1306.  
  1307.      ======== Text needed =========
  1308.  
  1309. ; -----------------------------------------
  1310. <MsgBox>
  1311. The MsgBox Dialog Box
  1312.  
  1313.      ======== Text needed =========
  1314.  
  1315. ; -----------------------------------------
  1316. <Display>
  1317. The Display Dialog Box
  1318.  
  1319.      ======== Text needed =========
  1320.  
  1321.     [..Title]<ID_TITLE>
  1322.     [..Border]<ID_BORDER>
  1323.     [..Status Bar]<ID_STATUSBAR>
  1324.     [..Texture]<ID_TEXTURE>
  1325.  
  1326.     [..Color]<ID_COLOR>
  1327.     [..Mono]<ID_MONO>
  1328.     [..Reverse]<ID_REVERSE>
  1329.  
  1330. ; -----------------------------------------
  1331. <Windows>
  1332. The Windows Dialog Box
  1333. This dialog box lists all the open windows.
  1334. Select one and choose OK to make that window
  1335. the active one.
  1336. ; -----------------------------------------
  1337. <Log>
  1338. The Log Message Dialog Box
  1339.  
  1340.      ======== Text needed =========
  1341.  
  1342. ; -----------------------------------------
  1343. ;
  1344. ;  Following are keyword reference definition windows
  1345. ;
  1346. ; -----------------------------------------
  1347. <inactive>
  1348. An inactive menu command is one that is, for
  1349. the moment, not available. The command becomes
  1350. active at another time when conditions within
  1351. the program require or permit its use.
  1352. ; -----------------------------------------
  1353. <shortcut>
  1354. Function keys are key combinations that
  1355. you can press to execute a menu command
  1356. without selecting the pull-down menu 
  1357. itself. Not all menu commands have 
  1358. function keys. The most frequently used 
  1359. operations do.
  1360. ; -----------------------------------------
  1361. <logging>
  1362. The message log is a debug tool. You should
  1363. delete it from the system by turning off the
  1364. INCLUDE_LOGGING global definition in dflat.h.
  1365. You should then eliminate references to it in
  1366. the MEMOPAD.TXT help database.
  1367. ; -----------------------------------------
  1368. <MoreWins>
  1369. A menu can have only so many selections.
  1370. The length of the screen is the limiting
  1371. factor. The CUA standard defines nine
  1372. windows as the maximum number of windows
  1373. that the Window menu can display. The 
  1374. Windows menu has the More Windows command 
  1375. to provide a way for you to choose from
  1376. the rest of the document windows.
  1377. ; -----------------------------------------
  1378. <API>
  1379. Applications Program Interface (API):
  1380. The functions, messages, macros, and 
  1381. data structures that a programmer 
  1382. uses to interface with the processes 
  1383. of a function library.
  1384. ; -----------------------------------------
  1385. <Block>
  1386. Marking Text Blocks
  1387. Marked text blocks affect the operation of these
  1388. commands:
  1389.  
  1390.     [..Cut]<ID_CUT>
  1391.     [..Copy]<ID_COPY>
  1392.     [..Paste]<ID_PASTE>
  1393.     [..Clear]<ID_CLEAR>
  1394.     [..Delete]<ID_DELETETEXT>
  1395.     [..Paragraph]<ID_PARAGRAPH>
  1396.  
  1397. Mark a text block by using one of these operations:
  1398.  
  1399.    Keyboard:
  1400.    ---------
  1401.    Hold the Shift key down and move the
  1402.    keyboard cursor. The block will be marked in
  1403.    reverse video.
  1404.  
  1405.    To clear the marked block, release the Shift 
  1406.    key and press any text entry or cursor movement
  1407.    key.
  1408.  
  1409.    Mouse:
  1410.    ------
  1411.    Click on the first or last character of the 
  1412.    block. Hold the mouse button down and move 
  1413.    the mouse cursor around. The marked block
  1414.    will follow the mouse cursor.
  1415.  
  1416.    To clear the marked block, release the mouse
  1417.    cursor and click anywhere.
  1418.  
  1419. ; -----------------------------------------
  1420. <Clipboard>
  1421. The Clipboard
  1422. The Clipboard is a scratchpad where you can save
  1423. text that can be pasted into a different location
  1424. in the same or another document. You save text with
  1425. the [..Copy]<ID_COPY> and [..Cut]<ID_CUT> commands, and you paste text into
  1426. from the Clipboard into a document with the [..Paste]<ID_PASTE>
  1427. command. 
  1428. ; -----------------------------------------
  1429. <toggle>
  1430. A toggle command is one that is
  1431. either on or off. When it is on,
  1432. its command on the menu is preceded
  1433. by a check mark (√).
  1434. <ID_CALENDAR>
  1435. Calendar
  1436. This command displays a calendar to demonstrate
  1437. the use of the PICTUREBOX class to draw line
  1438. vectors.
  1439. <ID_BARCHART>
  1440. Bar Chart
  1441. This command displays a bar chart to demonstrate
  1442. the use of the PICTUREBOX class to draw bars.
  1443. <Calendar>
  1444. Calendar
  1445. This calendar is an example of a picture box
  1446. with line vectors. The PgUp and PgDn keys
  1447. will page through the months. You can close 
  1448. the window from the [..System Menu]<sysmenu>.
  1449. <BarChart>
  1450. Bar Chart
  1451. This window is an example of a bar chart. You 
  1452. can close the window from the [..System Menu]<sysmenu>.
  1453. <end>
  1454.