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 (June 2001, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 29 Jun 2001 08:27:24 -0400
Reply-To:     Phil Schaeffer <Phil.Schaeffer@FAA.GOV>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Phil Schaeffer <Phil.Schaeffer@FAA.GOV>
Subject:      Re: Timer in SAS/AF
Comments: To: sdl@TDK.DK
Content-Type: text/plain; charset=ISO-8859-1

The progressbar object may do what you want although it cannot be linked to a submit block program. This SCL is for a frame with a pushbutton, progressbar, and text label.

pushbutton1:

do i=1 to 100 by 10;

progressbar1.value=i;

textlabel1.label=put(i,3.);

call wait(1);

end;

return;

Phil Schaeffer, FAA Headquarters.

____________________Reply Separator____________________ Subject: Timer in SAS/AF Author: S°ren Damgaard Laursen <sdl@TDK.DK> Date: 6/29/01 12:44 PM

Hi All,

When I build a frame, I need to a have a timer component on it.

That is, I need some kind of object that is capable of raising an event f.ex. every 1000 ms, and execute some code I specify.

Does anyone have en idea of whether or not this is possible in SAS/AF??

Greetings Søren Laursen


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