Where can I get a copy if the PB Icon?
-
Killswitch
- Enthusiast

- Posts: 731
- Joined: Wed Apr 21, 2004 7:12 pm
Where can I get a copy if the PB Icon?
The tite says it all relaly - whre can I get a copy of the OB 'Z' icon (I want to use it as the picture on one of my folders).
~I see one problem with your reasoning: the fact is thats not a chicken~
Here you go (hope Fred and co does not mind).
>PureBasic.ico<

BTW: SnIco edit can extract icons from applications...
>PureBasic.ico<

BTW: SnIco edit can extract icons from applications...
-Beach
-
Killswitch
- Enthusiast

- Posts: 731
- Joined: Wed Apr 21, 2004 7:12 pm
This code to show icon
Code: Select all
; Author : Rikuk
#Window_Main=0
#Gadget_Main_Ok=1
; -1 --> Renvoie le nb d'icones dans le fichier
Fichier.s="C:\WINDOWS\regedit.exe"
Image_Main_Ok=ExtractIcon_(0,Fichier,7)
nb=ExtractIcon_(0,Fichier,-1)
OpenWindow(#Window_Main,175,0,252,175,#PB_Window_SystemMenu|#PB_Window_ScreenCentered,Str(nb)+" Icones Disponibles")
CreateGadgetList(WindowID(#Window_Main))
ButtonImageGadget(#Gadget_Main_Ok,65,35,65,35,Image_Main_Ok)
WaitUntilWindowIsClosed() Thanks Droopy, I really needed this for a small project I am working on. Also, I had to change the following line to make it work for apps that only have one icon:Droopy wrote:This code to show icon ...
Image_Main_Ok=ExtractIcon_(0,Fichier,0)
I assume the last field is the image index so '0' must be the first image.
thanks again!
-Beach
-
Sub-Routine
- User

- Posts: 82
- Joined: Tue May 03, 2005 2:51 am
- Location: Wheeling, Illinois, USA
- Contact:
Yeah a great idea and its very simple for fred to add
but also for you.. do you use jaPBe ? I suggest you to get the sources, then make the default string for the string gadget of the icon at options hold the path of the PB icon and compile the IDE thats it!
PS: Will GPI still work on jaPBe ??? I want to know
Cheers
PS: Will GPI still work on jaPBe ??? I want to know
Cheers
Sorry to post this late.. I have made an XP icon of PB I don't know if someone would ever use it, I Do! and I'd like to share it 
The zip is quite big because it includes the 2 icons, one with shadow and the other with out the shadow. and also, the scales goes from 128x128 to 16x16 including 256 colors and 16 colors.
Link: www.gushh.com.ar/dls/PureBasic_XPicon_byGuShH.zip
Size: 28 KBytes
The zip is quite big because it includes the 2 icons, one with shadow and the other with out the shadow. and also, the scales goes from 128x128 to 16x16 including 256 colors and 16 colors.
Link: www.gushh.com.ar/dls/PureBasic_XPicon_byGuShH.zip
Size: 28 KBytes


