qb45advr.hlp (
Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
LSET Statement Programming Example
◄QuickSCREEN► ◄Details► ◄Example► ◄Contents► ◄Index►
──────────────────────────────────────────────────────────────────────────────
LSET Statement Programming Example
The following statement would convert the single-precision numeric variable
AMT to a 4-byte string and stores that string in A$,left-justified:
LSET A$ = MKS$(AMT)
In contrast, the following statement would convert the integer numeric
variable COUNT% to a 2-byte string and stores that string in D$,
right-justified:
RSET D$ = MKI$(COUNT%)
Note: To see the LSET statement used in a full example program, see
the ◄CVS function programming example►