home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Science / Science.zip / stplot16.zip / plot.hlp (.txt) < prev    next >
OS/2 Help File  |  1995-07-02  |  30KB  |  776 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. About PLOT ΓòÉΓòÉΓòÉ
  3.  
  4. PLOT is an OS/2 Presentation Manager application which offers graphical plot 
  5. support. Graphics created by PLOT can be printed or exported to a Windows 3.x 
  6. bitmap file. This allows you to load the created graphic from a word processor 
  7. and to embed it in your documents. 
  8.  
  9. PLOT highlights 
  10.  
  11. Data file format 
  12.  
  13. Registration information 
  14.  
  15. Calling PLOT from other applications 
  16.  
  17. PLOT has been developed by:
  18.  
  19. StegSoft
  20. Haid-und-Neu-Str. 16/90
  21. 76131 Karlsruhe
  22. West Germany
  23.  
  24. Fax: +49 721 693242
  25.  
  26.  
  27. ΓòÉΓòÉΓòÉ 1.1. Calling PLOT from other applications ΓòÉΓòÉΓòÉ
  28.  
  29. This information is intended for developers writing applications that need 
  30. graphical plot support under OS/2. 
  31.  
  32. If you are writing an OS/2 application that needs X-Y plot support, PLOT may be 
  33. very useful. You can start PLOT from your program by creating a child process 
  34. via DosExecPgm. 
  35.  
  36. If you are writing a commercial application, you can include PLOT on your 
  37. software package. In this case, registration fees have to be paid for every 
  38. distributed package. 
  39.  
  40. If you are interested in using PLOT together with your commercial software, 
  41. please contact us by writing to the following address: 
  42.  
  43. StegSoft
  44. Haid-und-Neu-Str. 16/90
  45. 76131 Karlsruhe
  46. West Germany
  47.  
  48. Fax: +49 721 693242
  49.  
  50.  
  51. ΓòÉΓòÉΓòÉ 1.1.1. Creating a child process ΓòÉΓòÉΓòÉ
  52.  
  53. The following example code shows a way to call PLOT from an application written 
  54. in C. First of all, a file containing all your data must be created and stored 
  55. to a disk. Then a child process must be created using the DosExecPgm kernel 
  56. function. This will start PLOT and your data file will automatically be loaded. 
  57.  
  58. #define INCL_DOSPROCESS
  59. #include <os2.h>
  60.  
  61. RESULTCODES resc;
  62. CHAR szFailName[CCHMAXPATH];
  63. CHAR szCommandLine[] = "plot\0yourdata.plt\0";
  64.  
  65. /*
  66.  * The following function writes your data to a file
  67.  * named "yourdata.plt". It is not included on this
  68.  * package, but you can obtain it by contacting us.
  69.  */
  70. SavePlotData("yourdata.plt", xdata, ydata, flags);
  71.  
  72. DosExecPgm(szFailName,          /* Object-name buffer  */
  73.            sizeof(szFailName),  /* Length of buffer    */
  74.            EXEC_ASYNC,          /* Async flag          */
  75.            szCommandLine,       /* Argument string     */
  76.            (PSZ) NULL,          /* Environment string  */
  77.            &resc,               /* Address of result   */
  78.            "plot.exe");         /* Name of application */
  79.  
  80.  
  81. ΓòÉΓòÉΓòÉ 1.2. PLOT highlights ΓòÉΓòÉΓòÉ
  82.  
  83. Version 1.6
  84.  
  85. Γûá Fully 32 bit architecture 
  86. Γûá Export a graphic to a Windows 3.x bitmap file 
  87. Γûá Copy a graphic to the clipboard 
  88. Γûá Capability of choosing line types, colors and markers 
  89. Γûá Accelerator keys providing quick access to commands 
  90. Γûá Enhanced color graphics printing support 
  91. Γûá Graph data can be easily created using a text editor 
  92. Γûá Save settings command 
  93. Γûá Online help for every command by pressing F1 
  94. Γûá Easy to use 
  95.  
  96.  
  97. ΓòÉΓòÉΓòÉ 2. File Menu ΓòÉΓòÉΓòÉ
  98.  
  99. The File menu contains commands that you use to open data files, print and 
  100. export graphics. In addition, it also contains the command that you use to exit 
  101. the application. 
  102.  
  103. The following commands appear in the File menu: 
  104.  
  105. New...              Opens an existing data file for creating a new graphic. 
  106.  
  107. Open...             Opens an existing data file for embedding in the current 
  108.                     graphic. 
  109.  
  110. Export...           Saves the current graphic to a Windows 3.x bitmap file. 
  111.  
  112. Print...            Prints the current graphic on the default printer. 
  113.  
  114. Exit                Quits this application. 
  115.  
  116.  
  117. ΓòÉΓòÉΓòÉ 3. New ΓòÉΓòÉΓòÉ
  118.  
  119. You can open a data file that exists on any drive or in any directory by using 
  120. the New command. The current graphic will be lost. To create a new graphic and 
  121. load a data file, do the following: 
  122.  
  123. o Select the File menu and choose the New command. 
  124.  
  125. A dialog box appears, showing you a list of files in the current directory. 
  126.  
  127.  
  128. ΓòÉΓòÉΓòÉ 4. Open ΓòÉΓòÉΓòÉ
  129.  
  130. You can open a data file that exists on any drive or in any directory by using 
  131. the Open command. The loaded graph will be represented in your current graphic. 
  132. To load a data file to be shown in your current graphic, do the following: 
  133.  
  134. o Select the File menu and choose the Open command. 
  135.  
  136. A dialog box appears, showing you a list of files in the current directory. 
  137.  
  138.  
  139. ΓòÉΓòÉΓòÉ 5. Export... ΓòÉΓòÉΓòÉ
  140.  
  141. You use the Export... command to save your graphic to a bitmap file. 
  142.  
  143. Follow these steps to create a bitmap file: 
  144.  
  145.  1. Select the File menu and choose the Export... command. A dialog box 
  146.     appears, prompting you for the size of your bitmap. 
  147.  
  148.  2. Select the desired size of your graphic and press the OK button. A dialog 
  149.     box appears, prompting you for the file name. 
  150.  
  151.  3. Enter a file name and press the OK button again. 
  152.  
  153. Your graph will be saved to a Windows 3.x bitmap file. 
  154.  
  155.  
  156. ΓòÉΓòÉΓòÉ 6. Print ΓòÉΓòÉΓòÉ
  157.  
  158. You use the Print command to print your graphic on the default printer. 
  159.  
  160. Follow these steps to print your graphic: 
  161.  
  162.  1. Select the File menu and choose the Print command. A dialog box appears, 
  163.     prompting you for the size of your graphic print. 
  164.  
  165.  2. Select the desired size of your graphic and press the OK button. A dialog 
  166.     box appears, prompting you for the job properties. 
  167.  
  168.  3. Select the job properties and press the OK button again. 
  169.  
  170. Your graph will be printed on your default printer. 
  171.  
  172. Note:  If you want to change your default printer, refer to a printer object on 
  173. your desktop. Open its menu and select your default printer by using the Set 
  174. default menu. 
  175.  
  176.  
  177. ΓòÉΓòÉΓòÉ 7. Exit ΓòÉΓòÉΓòÉ
  178.  
  179. You quit this application by using the Exit command. To quit this application, 
  180. do the following: 
  181.  
  182.  1. Select the File menu and choose the Exit command. 
  183.  
  184.  
  185. ΓòÉΓòÉΓòÉ 8. Edit Menu ΓòÉΓòÉΓòÉ
  186.  
  187. The Edit menu contains the following commands: 
  188.  
  189. Copy                Copy the current graphic to the clipboard. 
  190.  
  191. Edit Data File      Starts a text editor that allows you to create or modify a 
  192.                     data file. 
  193.  
  194.  
  195. ΓòÉΓòÉΓòÉ 9. Copy ΓòÉΓòÉΓòÉ
  196.  
  197. You can use the Copy command to copy the current graphic to the clipboard. 
  198.  
  199. Note:  You can copy your graphic as a bitmap or a metafile. 
  200.  
  201.  
  202. ΓòÉΓòÉΓòÉ 10. Options Menu ΓòÉΓòÉΓòÉ
  203.  
  204. The Options menu contains commands that you use to modify your graphic, load a 
  205. text editor or save the current settings. 
  206.  
  207. The following commands appear in the Options menu: 
  208.  
  209. Graphic...          Allows you to set new axis limits, to document the axis and 
  210.                     to select and unselect other drawing options. 
  211.  
  212. Set Font...         Allows you to select the desired font type and size. 
  213.  
  214. Graph...            Allows you to modify the line type when interpolating 
  215.                     between points, to put markers at each point and to change 
  216.                     the color of a graph. 
  217.  
  218. Save options        Use this command to save the current settings. 
  219.  
  220.  
  221. ΓòÉΓòÉΓòÉ 11. Graphic ΓòÉΓòÉΓòÉ
  222.  
  223. You can use the Graphic command to select the displaying options of your 
  224. graphic. 
  225.  
  226. To change the displaying options of your graphic, do the following: 
  227.  
  228. o Select the Options menu and choose the Graphic command. A dialog box will 
  229.   appear prompting you for the graphic options. 
  230.  
  231. o After selecting all the desired options, press the OK button. 
  232.  
  233. Your graphic will be immediately updated on the screen. 
  234.  
  235.  
  236. ΓòÉΓòÉΓòÉ 11.1. Graphic options ΓòÉΓòÉΓòÉ
  237.  
  238. Use this dialog box to specify the graphic drawing options. Refer to the 
  239. following list to learn how to use this dialog box: 
  240.  
  241. o Axes text 
  242. o x-Axis / y-Axis 
  243. o New axes values 
  244. o Settings 
  245. o Print parameters 
  246. o OK 
  247. o Cancel 
  248.  
  249.  
  250. ΓòÉΓòÉΓòÉ 11.1.1. Axes text ΓòÉΓòÉΓòÉ
  251.  
  252. In these entry fields you can enter the text you want to document your axes 
  253. with. 
  254.  
  255.  
  256. ΓòÉΓòÉΓòÉ 11.1.2. x-Axis / y-Axis ΓòÉΓòÉΓòÉ
  257.  
  258. This option will allow you to locate your graphic's axes either at the 
  259. left/bottom or in the coordinate's origin. 
  260.  
  261. Note:  If you have chosen the Box instead of axes option, this selection will 
  262. be ignored. 
  263.  
  264.  
  265. ΓòÉΓòÉΓòÉ 11.1.3. New axes values ΓòÉΓòÉΓòÉ
  266.  
  267. When you load a new graph, the coordinate's scope will be matched to all your 
  268. loaded graphs. However, if you want to modify the scope, you can enter new 
  269. margin values for your graphic. After this, choose the option Use new axes 
  270. values. 
  271.  
  272.  
  273. ΓòÉΓòÉΓòÉ 11.1.4. Settings ΓòÉΓòÉΓòÉ
  274.  
  275. The settings consist of the following options: 
  276.  
  277. o Draw axes. This option allows you to choose whether the coordinate axes will 
  278.   be drawn. 
  279.  
  280. o Box instead of axes. This option allows you to choose between coordinate axes 
  281.   or coordinate box. 
  282.  
  283. o Draw frame. This option allows you to draw a frame enclosing the whole 
  284.   graphic. 
  285.  
  286. o Line width thick. By selecting this option the lines will be drawn thicker. 
  287.   This option will probably not work on OS/2 version 2.1. 
  288.  
  289. o Document axes. This option allows you to choose whether the axes will be 
  290.   documented with numbers (and text). 
  291.  
  292.  
  293. ΓòÉΓòÉΓòÉ 11.1.5. Print parameters ΓòÉΓòÉΓòÉ
  294.  
  295. Use the Marker size option to select the marker size when you print a graphic. 
  296.  
  297.  
  298. ΓòÉΓòÉΓòÉ 11.1.6. OK-button ΓòÉΓòÉΓòÉ
  299.  
  300. Click on this button if you want to activate the changes made in the graphic 
  301. options dialog box. 
  302.  
  303.  
  304. ΓòÉΓòÉΓòÉ 11.1.7. Cancel-button ΓòÉΓòÉΓòÉ
  305.  
  306. Click on this button if you want to discard the changes made in the graphic 
  307. options dialog box. 
  308.  
  309.  
  310. ΓòÉΓòÉΓòÉ 12. Set Font ΓòÉΓòÉΓòÉ
  311.  
  312. You can use the Set Font command to select the font type and size used to 
  313. document your graphic. 
  314.  
  315. Note:  You will probably obtain good results when choosing the Times New Roman 
  316. font with 8pt size. 
  317.  
  318.  
  319. ΓòÉΓòÉΓòÉ 13. Graph ΓòÉΓòÉΓòÉ
  320.  
  321. You can change the drawing style of a graph by using the Graph command. 
  322.  
  323. To change the drawing style of a graph, do the following: 
  324.  
  325. o Select the Options menu and choose the Graph command. A dialog box will 
  326.   appear prompting you for the graph drawing attributes. 
  327.  
  328. o After selecting all the desired options, press the OK button. 
  329.  
  330. The modified graph will be immediately updated on the screen. 
  331.  
  332.  
  333. ΓòÉΓòÉΓòÉ 13.1. Graph options ΓòÉΓòÉΓòÉ
  334.  
  335. Use this dialog box to specify the drawing options of the currently selected 
  336. graph. Refer to the following list to learn how to use this dialog box: 
  337.  
  338. o Color 
  339. o Line type 
  340. o Marker type 
  341. o OK 
  342. o Cancel 
  343. o Save 
  344.  
  345.  
  346. ΓòÉΓòÉΓòÉ 13.1.1. Color ΓòÉΓòÉΓòÉ
  347.  
  348. Use this option to change the seleted graph's color. 
  349.  
  350.  
  351. ΓòÉΓòÉΓòÉ 13.1.2. Line type ΓòÉΓòÉΓòÉ
  352.  
  353. Use this option to choose the line type the seleted graph has to be drawn with. 
  354. If you don't want any lines, select the Invisible option. 
  355.  
  356.  
  357. ΓòÉΓòÉΓòÉ 13.1.3. Marker type ΓòÉΓòÉΓòÉ
  358.  
  359. Use this option to choose whether you want markers in the seleted graph. If you 
  360. don't want any markers, select the None option. 
  361.  
  362.  
  363. ΓòÉΓòÉΓòÉ 13.1.4. OK-button ΓòÉΓòÉΓòÉ
  364.  
  365. Click on this button if you want to activate the changes made in the graph 
  366. options dialog box. 
  367.  
  368.  
  369. ΓòÉΓòÉΓòÉ 13.1.5. Cancel-button ΓòÉΓòÉΓòÉ
  370.  
  371. Click on this button if you want to discard the changes made in the graph 
  372. options dialog box. 
  373.  
  374.  
  375. ΓòÉΓòÉΓòÉ 13.1.6. Save-button ΓòÉΓòÉΓòÉ
  376.  
  377. Click on this button if you want to activate the changes made in the graph 
  378. options dialog box. In addition, your graph file will be updated using the 
  379. graph options. 
  380.  
  381.  
  382. ΓòÉΓòÉΓòÉ 14. Edit Data File ΓòÉΓòÉΓòÉ
  383.  
  384. You can create or modify a data file by using the Edit Data File command. When 
  385. choosing the Edit Data File command, a text editor is started. After defining a 
  386. data set, the file has to be saved with the extension *.plt. 
  387.  
  388. Follow these steps to create a data file: 
  389.  
  390. o Select the Options menu and choose the Edit Data File command. 
  391.  
  392. A text editor will be started. Refer to one of the following items to learn how 
  393. to create your data file: 
  394.  
  395. o Data File Format 
  396.  
  397.  
  398. ΓòÉΓòÉΓòÉ 14.1. Data file format ΓòÉΓòÉΓòÉ
  399.  
  400. Format Description 
  401.  
  402. Each graph can be created and saved by using a text editor. A file containing 
  403. graph data should have the extention *.plt. Data files should contain one data 
  404. point per line. There are two possibilities of describing your data points. 
  405.  
  406. If both x and y values are specified (parametric data), your data file should 
  407. contain two number columns. The first one is assumed to be the x value of each 
  408. pair (x,y) and the second one represents the y value. 
  409.  
  410. However, the x value of each pair (x,y) may be omitted. In this case the 
  411. omitted value is assigned the current coordinate number. These coordinate 
  412. numbers start at 0 and are incremented for each data point read. This is useful 
  413. if you want to represent sampled values. 
  414.  
  415. In both cases you can add comments in any line beginning with ;. These lines 
  416. will be ignored. 
  417.  
  418. You can select some parameters such as the graph color, line type and marker 
  419. type by adding some commands to your data file. All commands begin with the # 
  420. character. You can use a command more than once each file, but only the last 
  421. oen will be used. 
  422.  
  423. Currently the following 3 commands are supported: 
  424.  
  425. o #COLOR 
  426. o #LINE 
  427. o #MARKER 
  428.  
  429. These two examples show you how to create both parametric and non-parametric 
  430. data files. 
  431.  
  432. Parametric file 
  433.  
  434. ; both x and y values
  435.  0     0
  436.  0.5   0.25
  437.  1     1
  438.  2     4
  439.  3     9
  440.  4    16
  441.  5    25
  442.  
  443. Non-parametric file 
  444.  
  445. ; only y values
  446.  0
  447.  1
  448.  4
  449.  9
  450. 16
  451. 25
  452.  
  453.  
  454. ΓòÉΓòÉΓòÉ 14.1.1. #COLOR command ΓòÉΓòÉΓòÉ
  455.  
  456. Use this command to select your graph's color. The following parameters are 
  457. available: 
  458.  
  459. WHITE
  460. BLACK
  461. BACKGROUND
  462. BLUE
  463. RED
  464. PINK
  465. GREEN
  466. CYAN
  467. YELLOW
  468. NEUTRAL
  469. DARK_GRAY
  470. DARK_BLUE
  471. DARK_RED
  472. DARK_PINK
  473. DARK_GREEN
  474. DARK_CYAN
  475. BROWN
  476. PALE_GRAY
  477.  
  478. Example: 
  479.  
  480. #COLOR BLUE
  481.  
  482.  
  483. ΓòÉΓòÉΓòÉ 14.1.2. #LINE command ΓòÉΓòÉΓòÉ
  484.  
  485. Use this command to select your graph's line type. The following parameters are 
  486. available: 
  487.  
  488. DOT
  489. SHORT_DASH
  490. DASH_DOT
  491. DOUBLE_DOT
  492. LONG_DASH
  493. DASH_DOUBLE_DOT
  494. SOLID
  495. INVISIBLE
  496. ALTERNATE
  497.  
  498. Example: 
  499.  
  500. #LINE LONG_DASH
  501.  
  502.  
  503. ΓòÉΓòÉΓòÉ 14.1.3. #MARKER command ΓòÉΓòÉΓòÉ
  504.  
  505. Use this command to select your graph's marker types. The following parameters 
  506. are available: 
  507.  
  508. NONE
  509. CROSS
  510. PLUS
  511. DIAMOND
  512. SQUARE
  513. 6-POINT-STAR
  514. 8-POINT-STAR
  515. SOLID_DIAMOND
  516. SOLID_SQUARE
  517. DOT
  518. CIRCLE
  519.  
  520. Example: 
  521.  
  522. #MARKER SOLID_SQUARE
  523.  
  524.  
  525. ΓòÉΓòÉΓòÉ 15. Save options ΓòÉΓòÉΓòÉ
  526.  
  527. Use Save options to store the current options. A file named PLOT.INI will be 
  528. created in the OS/2 directory. The next time you start this application these 
  529. same settings will be used. 
  530.  
  531. The following settings will be stored: 
  532.  
  533. o Window size and position, 
  534. o Bitmap size and resolution. 
  535. o Print size. 
  536. o Graphic settings. 
  537. o Font and font size. 
  538.  
  539.  
  540. ΓòÉΓòÉΓòÉ 16. Help Menu ΓòÉΓòÉΓòÉ
  541.  
  542. Refer to this menu to access the online help and to obtain information about 
  543. this product. 
  544.  
  545. The following commands appear in the Help menu: 
  546.  
  547. Help index               Use this command to access the help index. 
  548.  
  549. General help             Use this command to get a brief description of PLOT. 
  550.  
  551. Using help               Here you can learn how to use the online help. 
  552.  
  553. Registration information Displays registration data (only if you registered the 
  554.                          product). 
  555.  
  556. Product information      Displays program version and copyright. 
  557.  
  558.  
  559. ΓòÉΓòÉΓòÉ 17. Index ΓòÉΓòÉΓòÉ
  560.  
  561. Choosing this menu you can get access to the help index. 
  562.  
  563.  
  564. ΓòÉΓòÉΓòÉ 18. General help ΓòÉΓòÉΓòÉ
  565.  
  566. In this menu item you can get a brief description of PLOT. 
  567.  
  568. Note:  This screen will usually be handled by the default. 
  569.  
  570.  
  571. ΓòÉΓòÉΓòÉ 19. Using Help ΓòÉΓòÉΓòÉ
  572.  
  573. In this menu item you can learn how to use this online help. 
  574.  
  575.  
  576. ΓòÉΓòÉΓòÉ 20. Keys ΓòÉΓòÉΓòÉ
  577.  
  578. This application defines Function Keys, which you use to work with files and 
  579. display help.  For key definitions, select from the list below: 
  580.  
  581. o Standard function keys 
  582. o Accelerator keys 
  583.  
  584.  
  585. ΓòÉΓòÉΓòÉ 20.1. Standard function keys ΓòÉΓòÉΓòÉ
  586.  
  587. F1 
  588.    Displays help. 
  589.  
  590.  
  591. ΓòÉΓòÉΓòÉ 20.2. Accelerator keys ΓòÉΓòÉΓòÉ
  592.  
  593. This application defines keyboard accelerators, which are keystrokes that 
  594. generate command messages for an application. 
  595.  
  596. Using a keyboard accelerator has the same effect as choosing a menu item. While 
  597. menus provide an easy way to learn this application's command set, accelerators 
  598. provide quick access to those commands. 
  599.  
  600.  
  601. ΓòÉΓòÉΓòÉ 21. Tutorial ΓòÉΓòÉΓòÉ
  602.  
  603. This application still doesn't offer any tutorial. 
  604.  
  605.  
  606. ΓòÉΓòÉΓòÉ 22. Registration information ΓòÉΓòÉΓòÉ
  607.  
  608. If you are working with an unregistered PLOT version, you may use it for a two 
  609. weeks trial period. After this time you must register or stop using it. You can 
  610. obtain a registered PLOT version by ordering it at the following address or fax 
  611. number: 
  612.  
  613. StegSoft
  614. Haid-und-Neu-Str. 16/90
  615. 76131 Karlsruhe
  616. West Germany
  617.  
  618. Fax: +49 721 693242
  619.  
  620. As soon as you order PLOT, you will receive the latest version for US $20 
  621. (Germany DM 30). Please don't forget to tell us which diskette format you 
  622. prefer when you order your registered version. 
  623.  
  624. Please add US $8 for shipping and handling if you don't live in Europe. If you 
  625. live in Europe, add US $5 (Germany DM 5). 
  626.  
  627. Please use the order form included on this online help. To print an order form, 
  628. do the following: 
  629.  
  630.  1. Select one of the following items and double-click. 
  631.  2. Select Print. 
  632.  3. Make sure that This section is selected. 
  633.  4. Select Print. 
  634.  
  635. o Order form (English) 
  636.  
  637. o Bestellungsformular (Deutsch) 
  638.  
  639. o Formulario de pedido (Espa╨┤ol) 
  640.  
  641.  
  642. ΓòÉΓòÉΓòÉ 22.1. StegSoft PLOT order form ΓòÉΓòÉΓòÉ
  643.  
  644.  
  645. Name    ___________________________________________________________
  646.  
  647. Address ___________________________________________________________
  648.  
  649. City    __________________________ State _________ ZIP ____________
  650.  
  651. Country ___________________________________________________________
  652.  
  653. Phone Number (optional) __________________  Circle:  home  or  work
  654.  
  655. Shipping (check one):
  656.  __  By mail, payment enclosed (add $8 U.S. if you don't live in
  657.      Europe, $5 U.S. if you live in Europe)
  658.  __  By mail, cash on delivery (charge for shipping and handling)
  659.  
  660. Choose Disk Size (check one):
  661.  __  5 1/4" disk size
  662.  __  3 1/2" disk size
  663.  
  664. Payment mode (check one):
  665.  __  Cheque drawn in U.S. dollars or german marks enclosed
  666.  __  Cash enclosed (only U.S. dollars or german marks accepted)
  667.  __  Cash on delivery
  668.  
  669. PLOT for OS/2 2.x Registration Fee ($20.00 US)              ______
  670. PLOT Update Fee from any registered version ($5.00 U.S.)    ______
  671. Shipping and Handling                                       ______
  672.  
  673. Total Enclosed                                              ______
  674.  
  675. Mail or fax to:  StegSoft
  676.                  Haid-und-Neu-Str. 16/90
  677.                  76131 Karlsruhe
  678.                  West Germany
  679.  
  680.                  Fax: +49 721 693242
  681.  
  682.                  *** Thank you for your order! ***
  683.  
  684.  
  685. ΓòÉΓòÉΓòÉ 22.2. StegSoft PLOT Bestellungsformular ΓòÉΓòÉΓòÉ
  686.  
  687.  
  688. Name    ___________________________________________________________
  689.  
  690. Adresse ___________________________________________________________
  691.  
  692. Ort     __________________________________________ PLZ ____________
  693.  
  694. Land    ___________________________________________________________
  695.  
  696. Telefonnummer (optional) _____________________     Zuhause / Arbeit
  697.  
  698. Lieferung (W╨öhlen Sie eine Option aus):
  699.  __  Per Post, Geld liegt bei  (zzgl. DM 5,- Porto, f╨ær
  700.      Bestellungen innerhalb von Europa)
  701.  __  Per Post, gegen Nachnahme (zzgl. Porto)
  702.  
  703. W╨öhlen Sie das von Ihnen gew╨ænschte Diskettenformat:
  704.  __  5 1/4"
  705.  __  3 1/2"
  706.  
  707. Bezahlungsart:
  708.  __  Scheck in DM oder US Dollar liegt bei
  709.  __  Geld liegt bei (bitte nur DM oder US Dollar!)
  710.  __  Gegen Nachnahme
  711.  
  712. PLOT f╨ær OS/2 2.x Registrierungsgeb╨æhr (DM 30,-)            ______
  713. PLOT Update von jeder registrierten Version (DM 8,-)        ______
  714. Porto f╨ær Versand                                           ______
  715.  
  716. Gesamtbetrag                                                ______
  717.  
  718. Schicken oder faxen Sie dieses Formular an:
  719.  
  720.                  StegSoft
  721.                  Haid-und-Neu-Str. 16/90
  722.                  76131 Karlsruhe
  723.                  Deutschland
  724.  
  725.                  Fax: +49 721 693242
  726.  
  727.                  *** Vielen Dank f╨ær Ihre Bestellung! ***
  728.  
  729.  
  730. ΓòÉΓòÉΓòÉ 22.3. StegSoft PLOT - Formulario de pedido ΓòÉΓòÉΓòÉ
  731.  
  732.  
  733. Nombre    _________________________________________________________
  734.  
  735. Direcci╨▓n _________________________________________________________
  736.  
  737. Poblaci╨▓n _______________________ Provincia ______ C/P ____________
  738.  
  739. Pa╨▒s      _________________________________________________________
  740.  
  741. Tel╨Æfono (opcional) ______________________ Indicar:  casa o trabajo
  742.  
  743. Env╨▒o (elija una opci╨▓n):
  744.  __  Por correo, pago adjunto (a╨┤ada $5 U.S. si vive en Europa o
  745.      $8 U.S. si vive fuera de Europa)
  746.  __  Por correo, pago contra reembolso (m╨░s gastos de env╨▒o)
  747.  
  748. Elija formato de diskette:
  749.  __  diskette 5 1/4"
  750.  __  diskette 3 1/2"
  751.  
  752. Forma de pago:
  753.  __  Cheque en d╨▓lares U.S.A. o marcos alemanes adjunto
  754.  __  Dinero adjunto (d╨▓lares U.S.A. o marcos alemanes)
  755.  __  Pago contra reembolso
  756.  
  757. Versi╨▓n registrada de PLOT para OS/2 2.x ($20 U.S.)          ______
  758. Actualizaci╨▓n de cualquier versi╨▓n registrada ($5 U.S.)      ______
  759. Gastos de env╨▒o                                              ______
  760.  
  761. Total adjunto                                                ______
  762.  
  763. Enviar a:        StegSoft
  764.                  Haid-und-Neu-Str. 16/90
  765.                  76131 Karlsruhe
  766.                  Alemania
  767.  
  768.                  Fax: +49 721 693242
  769.  
  770.                  *** ╨╜Muchas gracias por su pedido! ***
  771.  
  772.  
  773. ΓòÉΓòÉΓòÉ 23. Product information ΓòÉΓòÉΓòÉ
  774.  
  775. Refer to this menu item to know about the PLOT version you are using and the 
  776. people who wrote this application.