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 (May 2003, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 13 May 2003 17:19:20 -0400
Reply-To:   "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Subject:   Re: Ending SAS AF Application

"Don Burklo" <dwburklo@COPELAND-CORP.COM> wrote in message news:200305132010.h4DKAWQ02671@listserv.cc.uga.edu... > What is the best way to end a SAS AF Application and still remain in SAS? > Using endsas in a submit block end the application and SAS. I have > tried "Call Execcmd('END')" outside of a submit bloce in the term section > with no sucess. > > Thanks, > > Don

The term: section only runs when an ending action has occurred (such as END or CANCEL commands or user clicking X button in the window).

The simplest might be to have a push button control in the frame and set the .label = 'End' .commandOnClick = 'END'

You can set a controls attributes using either the Properties Editor or programmatically in the frame's INIT section.

You could also put call execcmd ('END') _after_ the endsubmit; statement

What you do depends on what you want to happen.

-- Richard A. DeVenezia, http://www.devenezia.com/downloads/sas/af


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