home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 24 / 024.d81 / t.q&a < prev    next >
Text File  |  2022-08-26  |  1KB  |  55 lines

  1.  
  2.  
  3.  ====  Questions and Answers  ====
  4.  
  5.  
  6. From Sessanna 14057:
  7.  
  8. Is there any way to load and list a
  9. SEQ file?
  10.  
  11.  
  12. > To load a SEQ file, it must be read
  13. > into variables or an array, but a
  14. > SEQ file can be printed to the
  15. > screen with this mini-program:
  16.  
  17. 10 OPEN5,8,5,"FILENAME,S,R"
  18. 20 IF ST=0 THEN GET#5,T$ : PRINT T$;
  19.    : GOTO 20
  20. 30 CLOSE 5
  21.  
  22.  
  23. Can one program be running while
  24. another program is loading?
  25.  
  26. > While almost anything is possible
  27. > on a computer, this feat cannot be
  28. > accomplished without considerable
  29. > programming pain.
  30.  
  31.  
  32. From Dow 35216:
  33.  
  34. I would like to be able to change the
  35. disk ID on a complete disk.  How
  36. might I go about this without having
  37. to copy all the programs one by one
  38. to the new disk?
  39.  
  40. > When a disk is formatted, the disk
  41. > ID is written to every sector on the
  42. > disk.  This is done so the drive
  43. > will know if the disk it expects to
  44. > be reading is the one it actually
  45. > is reading.  It would take a pretty
  46. > sophisticated program to read in a
  47. > sector, reformat that sector with
  48. > the new ID, and then write it back
  49. > onto the disk.  I am not aware of a
  50. > program that will do this.  If
  51. > anyone has written one, send it in!
  52.  
  53. ----------<end of article>----------
  54.  
  55.