At 06:26 PM 9/22/2009, Dan Goldberg wrote:
I am having a lapse of memory, how do you change a form from edit
mode to entry mode??
The reason I ask is when a user is in a form they would like to
keep hitting enter to add new rows to a form in edit mode.
Dan,
When using the form as "EDIT USING formname", you will need to place
a Bit Button or Speed Button with Pre-Define Function "Add Row" or a
Custom EEP as following:
-- Example 01
-- Using Command
NEWROW
RETURN
-- Example 02
-- Using the PROPERTY Command
PROPERTY TABLE <FORMTABLENAME> 'INSERT'
RETURN
In either case, a new row will be inserted.
Ultimately, you can also use [F2] key to insert a new row, if you wish.
Hope that helps!
Very Best R:egards,
Razzak.