home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / club100 / pg / pgxos / datfil.tip < prev    next >
Text File  |  2006-10-19  |  2KB  |  49 lines

  1.      DATFIL.TIP by Paul Globman
  2.          Copyright (c) 1990
  3.  
  4. DATFIL.CO was written to compensate for the removal of CRDFIL.BA from the
  5. M100SIG Data Libraries, and to provide continued usefulness of existing
  6. templates and utility programs.
  7.  
  8. DATFIL has one minor distinction from CRDFIL, which is the insertion of a
  9. space after the prompt.  This was done because a space is an often used
  10. separator between the field prompt and the field data, and by including it as
  11. a program function, the user is not required to include the space after
  12. each prompt.
  13.  
  14. Although this program difference was a mindful and deliberate attempt to
  15. improve upon the now unavailable CRDFIL, it is remotely possible for an 
  16. existing CRDFIL template to display awkwardly when using DATFIL.
  17.  
  18. Any display problems created by the addition of this space, can easily be
  19. rectified by...
  20.  
  21. a)deleting the space that exists in the prompt.
  22. b)reducing the prompt by one character.
  23. c)adjusting the print position of the offending data field.
  24.  
  25. If you cannot sufficiently correct your data field display, and the DATFIL.CO
  26. program is not usable unless it duplicates the CRDFIL output EXACTLY,
  27. then you can modify DATFIL.CO as follows...
  28.  
  29. 1)LOADM"DATFIL" and take note of the TOP, END, and EXE addresses.
  30.  
  31. 2)Model 100 users must CLEAR256,TOP to avoid the OM? error.
  32.  
  33. 3)For DATFIL.100, AD=62715
  34.   For DATFIL.200, AD=63807
  35.   For DATFIL.CMD, AD=63823 (XOS)
  36.  
  37. 4)Insert the correct AD in line 20, and the correct TOP/END/EXE info in line50
  38.  
  39.  10 REM DATFIL.TIP (c) 1990 by P.Globman
  40.  20 LOADM"DATFIL":AD=XXXXX
  41.  30 IF PEEK(AD) <> 255 THEN BEEP:STOP
  42.  40 POKE AD,254:KILL"DATFIL.CO"
  43.  50 SAVEM"DATFIL",TOP,END,EXE
  44.  
  45. 5)The resulting DATFIL will not insert a space and the user will be required
  46. to incorporate that space into the prompt data.  This fix is a last resort
  47. option if (a), (b), or (c) above does not rectify the display.
  48.  
  49.