home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / DOS_GG / COMCAT / VOL95.ARJ / VOL9505 < prev    next >
Text File  |  1992-01-07  |  4KB  |  97 lines

  1.  
  2. O S / 2    P r o g r a m m a T h e e k volume 9505
  3.  
  4. gelijk aan HoustonLib 1549/1749
  5.  
  6. Titel: PARAMID & various OS/2 utilities
  7.  
  8. Number  Name            Size    Date     Comments
  9.         CATALOG  O05     1242   8-24-89 This list
  10. 9505.01 LOOK     ARC    26806  10-23-88 Fullscreen TYPE /w  mouse support
  11. 9505.02 MEM_OS2  ARC    15488   9-12-88 Gives AvailMem,  multithread
  12. 9505.03 MOVE_OS2 ARC     6532   6-26-88 Primitive FileMove,  incl. C source
  13. 9505.04 PARABEEP EXE     4844   1-01-89 Beeps, switch  duration & tone
  14. 9505.05 PARADEL  EXE     6051   1-01-89 Erases COMPLETE  harddisk
  15. 9505.06 PARADISP EXE    15534   1-01-89 TYPE with 7-bits and  EGA support
  16. 9505.07 PARAFF   EXE     6931   1-01-89 File find
  17. 9505.08 PARAHEX  EXE     4660   1-01-89 Hex display a la  DEBUG
  18. 9505.09 PARAINFO EXE    13753   1-01-89 File info, change  volume label
  19. 9505.10 PARAKFST EXE     4107   1-01-89 Change typing speed  of keyboard
  20. 9505.11 PARAMID  DOC    87027   1-01-89 DOC on Paramid  utilities
  21. 9505.12 PARAMID  EXE    49312   1-01-89 Main menuprogram
  22. 9505.13 PARAMOVE EXE     2791   1-01-89 FileMove
  23. 9505.14 PARAPKEY EXE     1997   1-01-89 Pausekey
  24. 9505.15 PARASCAN EXE    24236   1-01-89 Scan files for  string
  25. 9505.16 PARASRCH PGM     4191   1-01-89 Program info
  26. 9505.17 PARAZAP  EXE     5371   1-01-89 Hex file editor (a  la DEBUG)
  27. 9505.18 SORT     ARC    11869   9-12-88 Filter, larger files  than MS
  28. 9505.19 UDIR     ARC    32640  10-03-88 Advanced DIR with  columns
  29.         VOL9505  ABS     3819   8-24-89 Disk abstract
  30.                21 File(s)     22528 bytes free on volume  DOSGG9505
  31.  
  32. PARAMID 1.0 OS/2 utilities
  33.  
  34. PARAFF: File Find (not within .ARCs etc.)
  35. PARAPKEY: Pausekey ('Press any key to continue') to use  within .CMD files
  36. PARAZAP: a la DEBUG, but a bit primitive
  37. PARADISP: improvement on TYPE with scroll up/down. Options:  exclude/include
  38. 8th bit (Wordstar-like files), 43 line mode of EGA and VGA
  39. PARADEL: to erase one or more harddisks COMPLETELY
  40.  
  41. LOOK is a full-screen file display program for OS/2.
  42.  
  43. To use LOOK, at the command line type:
  44.  
  45.      LOOK filename
  46.  
  47. where filename is the name of the file you want to view.
  48.  
  49. Mouse support:  Can use mouse to page up/page down
  50.                                        scroll up/down
  51.                                        select help
  52.  
  53. Also my computer with only 2 megs of memory would have out  of memory error
  54. when browsing large files. I allocated the  segment in 64 k increments and
  55. allocated my pointers from the segment using to MAKEP macro.   This made it
  56. possible to read large files without 'out of  memory' errors.  Do not know if
  57. there is a limit but have  tested with some files of about 1 meg.
  58.  
  59.  
  60. UDIR.EXE   OS2 directory commmand.
  61.  
  62. An expanded directory command that allows you to list  directory of all files,
  63. in all subdirectories.  The command  will allow wild card just as the OS/2
  64. command "dir".  The  directory listing can be 1 wide, 2 wide, 3 wide or 5 wide
  65. on  screen.  Each directory listed is totalled.  The output can  be directed
  66. to a printer, or other output device, or file.
  67.  
  68. The syntax of command is
  69.  
  70. UDIR [path] [options]
  71.  
  72. The options are as follows.
  73.  
  74. /w or /w5 : List directory entries 5 accross screen.
  75. /w2       : List full directory information 2 wide.
  76. /w3       : Partial directory information 3 wide.
  77. /s        : List all subdirectory under path
  78. /e        : Echo output to device/file following /e.
  79.  
  80. This program is written using Microsoft C 5.1 and using OS/2  call functions. 
  81. The source for this program and for a set  of library functions, for keyboard,
  82. DOS, mouse, screen, and  date/time functions is available for $10.00.  A
  83. Turbo-C version to run under DOS 3.x is also available for  the same price.
  84.  
  85.  
  86.                      MEM_OS2.ARC
  87.  
  88.      MEM_OS2.EXE is a more sophisticated version of  OS2MEM.EXE, a program
  89. that I wrote earlier this year which  displays the results of a call to the
  90. the API function  DosMemAvail.     This new version is uses the multitasking
  91. ability of  OS/2 to bring up a number of threads which execute  concurrently
  92. and enable the user to more closely monitor the  memory demands of the system.
  93.  
  94. MOVE_OS2: primitive file move, includes C source.  Demonstrates the use of
  95. DosFindFirst, Next and DosMove  functions.
  96.  
  97. SORT: filter, is capable of handling larger files dan  Microsoft's.