| Date: | Thu, 2 Aug 2007 15:10:30 -0400 |
| Reply-To: | Randy Herbison <RandyHerbison@WESTAT.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Randy Herbison <RandyHerbison@WESTAT.COM> |
| Subject: | Re: SCL code! |
|
| In-Reply-To: | <257967.42194.qm@web56810.mail.re3.yahoo.com> |
| Content-Type: | text/plain; charset="us-ascii" |
T,
I don't know what you mean by "refresh this variable field for different
value".
Let's see if this helps:
if _self_.text = 1 then do;
abc._protect();
* You can use SCL to update a protected widget;
abc.text='ABC';
end;
else abc._unprotect();
You may want to see the documentation for the widget class's '_gray'
method and 'enabled' attribute.
-Randy
-----Original Message-----
From: owner-sas-l@listserv.uga.edu [mailto:owner-sas-l@listserv.uga.edu]
On Behalf Of Tarak Patel
Sent: Thursday, August 02, 2007 1:49 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: SCL code!
Hi All,
here is my code in SCL for Clinplus,
if _self_.text = 1 then do;
abc.protect();
end;
first of all i have tried this code for value=1 and it works means it
does not allow to enter value for variable field.What method shold i
have to use if i want to refresh this variable field for different
value.
Thanks in advance
T
---------------------------------
Boardwalk for $500? In 2007? Ha!
Play Monopoly Here and Now (it's updated for today's economy) at Yahoo!
Games.
|