List of Icons

  • Follow


I use block menus for a application and would like to know if there is a
listing of icon numbers and Pictures for reference. A sample of the code
is below and I am interested in the icons called with 1,2,0,0.....

Thanks,

Don

INIT:
choice=5;
LOOP:
   do while(choice ne 0);
      choice=block('Writers Toolbox',
        'Main Menu',6,'Outline','Index',
         '','','Compare Files',
         'Calendar','','',
         'End','','','',

         1,2,0,0,3,4,0,0,111,0,0,0);

      select(choice);
         when(1) call display('outl.scl');
         when(2) call display('index.scl');
         when(5) call display('compare.scl');
         when(6) call display('calend.scl');
         when(9) leave LOOP;
         otherwise do;
            if (choice<0) then
            call display('help.scl',choice);
         end;
      end;
   end;
   call endblock();
return;
0
Reply dwburklo (21) 10/2/2003 4:27:47 PM

Check this out:

http://listserv.uga.edu/cgi-bin/wa?A2=ind0309C&L=sas-l&P=R11752

It has all the pictures, but I don't think it has the number
for reference :-(

Ya

-----Original Message-----
From: Don Burklo [mailto:dwburklo@COPELAND-CORP.COM]
Sent: Thursday, October 02, 2003 9:28 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: List of Icons


I use block menus for a application and would like to know if there is a
listing of icon numbers and Pictures for reference. A sample of the code
is below and I am interested in the icons called with 1,2,0,0.....

Thanks,

Don

INIT:
choice=5;
LOOP:
   do while(choice ne 0);
      choice=block('Writers Toolbox',
        'Main Menu',6,'Outline','Index',
         '','','Compare Files',
         'Calendar','','',
         'End','','','',

         1,2,0,0,3,4,0,0,111,0,0,0);

      select(choice);
         when(1) call display('outl.scl');
         when(2) call display('index.scl');
         when(5) call display('compare.scl');
         when(6) call display('calend.scl');
         when(9) leave LOOP;
         otherwise do;
            if (choice<0) then
            call display('help.scl',choice);
         end;
      end;
   end;
   call endblock();
return;
0
Reply yhuang (489) 10/2/2003 4:58:19 PM


1 Replies
29 Views

(page loaded in 0.057 seconds)

Similiar Articles:













7/15/2012 12:44:18 AM


Reply: