Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tab Order

Status
Not open for further replies.

bigandfat

Technical User
Feb 7, 2002
42
0
0
CA
I have a form on which I open a table frame ( timestamp )at the end().Attached to the table frame are several fields. I have been able to tab from the first record of the table thru the attached fields and back to the table. I would like to tab from the last record in the table thru the fields and back to the last timestamp in the table field.
Is there a way to do this?

Thanks in Advance
 
bigandfat,

I'm not entirely sure I'm following, but one way to do this might be to:

1) Jump to the previus record in the current sort order
2) Set focus to the TimeStamp field.

Here's one way to do this:

Code:
method pushButton(var eventInfo Event)

   Customer.action( MoveScrollUp )
   Customer.First_Contact.moveto()

endMethod

Now, this assumes:

1. Your tableframe is named "Customer."
2. Your target field is called "First Contact" (who's default noise name contains an underscore because object names cannot contain spaces).
3. You're comfortable referring to the UIObject names directly.

If you're trying to achieve something different, please let us know.

Hope this helps...

-- Lance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top