Many thanks my teacher... Daniele ----- Original Message ----- From: Lawrence Lustig To: RBASE-L Mailing List Sent: Thursday, June 26, 2008 3:23 PM Subject: [RBASE-L] - RE: Simulate R> command in Runtime 7.6
<< Can you explain me how load the relut into a VARCHAR variable and display it in a memo field ? >> If you have a file MYFILE.TXT that you want to display in a memo field then: SET VAR vFileText VARCHAR = ['MYFILE.TXT'] will load the contents of the file into the variable vFileText. If you attach that variable to a Variable Memo field you can see the contents. (Remember to set the memo field to read only unless you actually want the user to be able to edit the output -- in which case, with an additional SAVE button, you've just written a simple text editor). -- Larry

