There is noway I can think of without Designing a screen and a program to call it. If not wanting to use the browse command because the user can change the data or is to big on the screen, try this code.
This is VFP code so you might have to change a few things.
store "" to MemvarNAme
DEFINE WINDOW somename FROM 12,12 TO 15,30 IN SCREEN TITLE '' NONE NOGROW NOCLOSE NOFLOAT NOMDI NOZOOM
ACTIVATE WINDOW somename
USE dbfname
BROWSE FIELDS Fieldname IN WINDOW somename TITLE '' NOCAPTIONS NOAPPEND NODELETE NOEDIT
MemVarNAme = Fieldname
USE
RELEASE WINDOWS somename
@ 12,12, say memvarName
David W. Grewe Dave