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
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
|