What is the trap/exit if one decides not to stay inputting for days? Just a thought if the last field has data to enter then you might want to ask and if '[Esc]' , 'No' then 'saverow and exit' and maybe set the dialog to a set time and no response it assume, 'we are outta here' and run the exit routine.
A little bit of all suggestions together. Sincerely, Paul D. I also do not know the application and could be totally wrong here. JM.02 -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Dan Goldberg Sent: Wednesday, September 23, 2009 11:23 AM To: RBASE-L Mailing List Subject: [RBASE-L] - Re: edit mode to entry mode Thanks for the help. I am thinking of maybe placing the "newrow" in the last field of the row "on exit" eep. That way it will automatically start a new row. Dan Goldberg -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of A. Razzak Memon Sent: Tuesday, September 22, 2009 3:36 PM To: RBASE-L Mailing List Subject: [RBASE-L] - Re: edit mode to entry mode 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.

