Chapter Contents |
Previous |
Next |
COMAMID SCL Function |
Local and remote |
Syntax | |
Syntax Description | |
Example |
Syntax |
cval=COMAMID(); |
Example |
The following program fragment gets the string of COMAMIDs
that are valid for the operating system on which this SCL program is executed.
After that string is returned, one way to display the values would be in a
listbox. Although this example does not include it, you would specify that
the listbox be filled with the text string
cval
.
comlist=makelist(); str=comamid(); do i=1 to 10; com=scan(str,i,' '); if com^=' ' then comlist=insertc(comlist,com,i); end;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.