Date: Mon, 24 Jun 2002 15:18:08 -0400
Reply-To: "David L. Ward" <dward@SASHELP.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "David L. Ward" <dward@SASHELP.COM>
Subject: Re: SAVECLASS in SCL..?
In-Reply-To: <9786ac01.0206241041.6f1ee0ed@posting.google.com>
Content-Type: text/plain; charset="iso-8859-1"
Ywr1,
Instead of issuing the command "compile" (or comp) by either clicking on a
button that executes this command or typing it into the command box, issue
the command "saveclass". As a shortcut, you can add a new button to your
toolbar that does this. The saveclass command will compile the code and
create the necessary class entry.
David Ward
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU]On Behalf Of ywr1
Sent: Monday, June 24, 2002 2:42 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: SAVECLASS in SCL..?
hi all,
basically, my question is....
how to compile a class that i defined in SCL....?
(error message that i can see from log is that
i must use SAVECLASS to compile the class....)
the codes are:
class x;
m:method;
put 'hello';
endmethod;
endclass;
thanks.
|