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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change tab order of fields on input form

Status
Not open for further replies.

quork

Programmer
Oct 20, 2009
18
US
I'm using ClarionPE 6.3. How does one change the tab order of input fields on an input form? That is, when the user tabs from field-to-field. How do I set the order in which he goes to the next field?

I have searched and searched Clarion documentation. I don't see anything about this.

Does anyone know how thisis done? You help is very much appreciated.
 
Hi!

At design time, press F12 and move the controls to follow the tab order you want.

At run time, you need to use the PROP:Follows and maybe PROP:NextField i.e.

IF ?CurrField{PROP:NextField} <> ?NextField
?CurrField{PROP:Follows} = ?NextField
END

Regards
 
Again Shankar, I must thank you so much. If you lived in my city I would take you out and buy you a nice dinner.

The knowledge in your brain is extremely valuable to us all. Thank you for sharing it's contents.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top