Hi OP,
DBs seem to be the in thing at the moment
Skip the constant expression, only useful if displaying records. If you need to edit the records then use this.
After the execute SQL command on the ONSHOW add ;
myVariable = RecSet.myFIELDNAME
In the text input box, create a variable that matches the myVariable above. This will display the first record.
On the next record button. Keep the
RecSet.NextRecord() command and add the following
myVariable = RecSet.myFIELDNAME
This will read the next record into your variable displayed in the text input box.
Mack
If it doesn't work, post the IMP and I'll check