At 10:52 PM 2/10/2005, Sharon Lima wrote:
1. I want the form to open up with the cursor on the first
field on the form, NOT on the Page Tab.
Sharon,
Here's how:
01. Define a <Component ID> for the first field on the form
02. Use the following PROPERTY command as On After Start EEP
PROPERTY <Component ID> SET_FOCUS 'TRUE'
RETURN
2. I have a Speed Button to Add and Continue using the
predefined EEP Add Row. This adds the row and refreshes the
form as it should. However the cursor on the refreshed form
is where I left off on the previous form rather that at the
first position on the refreshed form. (This was something I
got help some time ago on a simpler one-page form. Looking at
that simple form, I don't see what I am looking for that will
work on this 3 page form.)
Here's one way to take care of this:
01. Define a <Component ID> for the first field of the form
02. Use the following PROPERTY command as Table "On Row Entry"
EEP:
PROPERTY <Component ID> SET_FOCUS 'TRUE'
RETURN
That's all there is to it!
Enjoy and make sure to have fun!
Very Best R:egards,
Razzak.