home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / basic / mbastip.txt < prev    next >
Text File  |  1994-07-13  |  1KB  |  26 lines

  1.                                MBASIC TIP
  2.                                    by
  3.                              Steve Brammer
  4.  
  5. For those of you who, like myself, do frequent programming in MBASIC, an
  6. occasion often arises where the ability to display a message on the
  7. screen in a given row and column would be very convenient.  However, to
  8. the best of my knowledge, MBASIC does not have a "LOCATE", "HTAB" or
  9. "VTAB" command.  Recently, I found a definable function which would
  10. solve the dilemma.  (Actually, someone else found it and showed it to
  11. me.) When you try the program below, keep in mind that I have only tried
  12. this on a Kaypro with MBASIC and not on any other machine!
  13.  
  14.  10 DEF FNLOC$(X,Y)=CHR$(27)+CHR$(61)+CHR$(X+31)+CHR$(Y=31)
  15.  20 PRINT CHR$(26):REM CLEARS THE SCREEN
  16.  30 PRINT FNLOC$(10,5);"TEST LINE"
  17.  40 END
  18.  
  19. Line #10 defines the function to position the message.  Line #30
  20. displays the message, "TEST LINE", at row=10 and column=5.
  21.  
  22. I hope this tip will help you, and if you know any tips yourself, be
  23. sure to write to the newsletter editor about them.
  24.  
  25. Article from The Random File July 1985
  26.