MODIFY MEMO Command Example

The following example opens the notes memo field for the first record in employee in an editing window with a highlighted range.

CLOSE DATABASES
OPEN DATABASE (HOME(2) + 'data\testdata')
USE employee  && Opens Employee table
MODIFY MEMO notes NOEDIT RANGE 1,10  && First 10 characters selected
USE