LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (January 2002, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 9 Jan 2002 04:58:11 -0500
Reply-To:     Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Subject:      Re: Taborder in Composites

On Wed, 9 Jan 2002 01:31:36 -0800, Stephan <skrause@DVD-SYSTEMPARTNER.DE> wrote:

>Hi, > >I have a problem with the taborder of composite objects. It doesn't >matter if I build composite objects with several text entries in a >frame and save it as composite or build a composite from the scratch >(coded in a SCL-Entry and saved as class). The taborder seams like >being choosen by random (allthough I defined it in the frame). > >Is there any way to get the SAS-system knowing in which order the >fields should be choosen? > >Thanks. > >Stephan

What do you mean with "choosen"? I assume, you enter some text in a field and press <enter>? You should define a label for each entry field and use the cursor - statement to get the cursor where you want. The first time you can do that in INIT:

INIT: cursor text1; return;

text1; cursor text2; return;

text2: cursor text1; return;


Back to: Top of message | Previous page | Main SAS-L page