I use many simple EEP's in the application I am building like the one
below.
SET DATE MM/DD/YYYY
SET VARIABLE vWorkDate DATE
FILLIN vWorkDate=8 USING 'ENTER WORK DATE YOU ARE EDITING IN MMDDYYYY
FORMAT. +
DO NOT USE SLASHES(/).'
EDIT USING KayParkDaywork WHERE WorkDate = .vWorkDate
CLEAR VAR vworkDate
RETURN
Is it always wise to have an IF THEN statement to care for the escape
key (or null) in case the user decides to get out of the form before
entering the information?
Jim
I use this in some of the menu choices:
IF vendkey = '[Esc]' THEN
GOTO done
ENDIF