Guest_imported
New member
- Jan 1, 1970
- 0
Hi
Does anyone know how to load the contents of a variable into an rtfText control? i.e. if you have loaded an rtf file into a variable:
open rtffile for input as #1
do until eof(1)
line input #1 templine
alltext = alltext & templine
loop
and then did any modifications to alltext you wanted, can you send alltext to the rtfText box without saving alltext in a file?
Does anyone know how to load the contents of a variable into an rtfText control? i.e. if you have loaded an rtf file into a variable:
open rtffile for input as #1
do until eof(1)
line input #1 templine
alltext = alltext & templine
loop
and then did any modifications to alltext you wanted, can you send alltext to the rtfText box without saving alltext in a file?