<< 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

