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: BasicIconFactory vs. MetalIconFactory - comp.lang.java.gui ...Is there a L&F-independent way of accessing various system icons (something like MetalIconFactory, only working for whatever L&F the system is using)?... GNOME desktop and managing lots of running applications - comp ...Solaris GNOME metacity right now puts the list of applications in the task bar. ... > They would prefer to have icons on the desktop representing the running ... missing Java icon in system control - comp.lang.java.help ...I downloaded the newest Java from sun.com and it seems to work fine (it's listed in Firefox' plugin list, and it shows a java icon in the system try... My Font Manager Wishlist - comp.fontsI think it refreshes the lists of fonts too often and that is forcing me to sort them into folders of under 200. That is not all bad. I am getting a lot of icons for ... ThinkVantage Access Connection - signal strength graph missing ...... search (Find) for available wireless networks in an area, it produces a list of ... in "tray" - comp.sys.laptops.thinkpad ..... icon I am missing now is the square icon ... Installing fonts on Win XP - comp.fontsOn Tue, 14 Dec 2010 20:45:46 -0600, Suzanne S. Barnhill wrote: > When I looked at that, it seemed to be the usual choice of Large Icons, > Small Icons, List, etc., which ... Hiding JFrame Taskbar Button - comp.lang.java.guiThe icon will also be visible when alt-tabbing to select the window. Yes, this is ... of the same application. i.e. my primary browser window is at the top of the list ... Trashed Desktop icon accidentally, how do I retrieve? - comp.sys ...In my mac OSX, I accidentally moved the desktop icon to the trash and I can't seem to drag it out. Can someone aid me in safely removing the desktop ... itunes - can you clear the "recently added" playlist? - comp.sys ...I find it much easier to work from a big list of songs and pare it down by removing ... Option-double-click the icon and you can alter the criteria it uses to pick songs. Change JFrame icon via custom LaF - comp.lang.java.guiHello, Is there a way to change the JFrame icon via a custom Look and Feel? I'm trying to create a LaF and would like to use a "nicer" icon. Als... Master List of Free IconsAt IconDock, we are committed to providing both stock icons and free icons. To help you find more free icons on the web, we have compiled a huge list of free icons ... IconsList item icon options: Use live thumbnails or file icons of the file type (for example, .doc); full set. Toolbar icons: 16x16, 24x24, 32x32. Note that toolbar icons are ... 7/15/2012 12:44:18 AM
|