Where can I get a copy if the PB Icon?

Everything else that doesn't fall into one of the other PB categories.
Killswitch
Enthusiast
Enthusiast
Posts: 731
Joined: Wed Apr 21, 2004 7:12 pm

Where can I get a copy if the PB Icon?

Post by Killswitch »

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~
Beach
Enthusiast
Enthusiast
Posts: 677
Joined: Mon Feb 02, 2004 3:16 am
Location: Beyond the sun...

Post by Beach »

Here you go (hope Fred and co does not mind).

>PureBasic.ico<
Image

BTW: SnIco edit can extract icons from applications...
-Beach
Killswitch
Enthusiast
Enthusiast
Posts: 731
Joined: Wed Apr 21, 2004 7:12 pm

Post by Killswitch »

Thanks mate.
~I see one problem with your reasoning: the fact is thats not a chicken~
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

How did you make that download counter?
sec
Enthusiast
Enthusiast
Posts: 792
Joined: Sat Aug 09, 2003 3:13 am
Location: 90-61-92 // EU or ASIA
Contact:

Post by sec »

thefool wrote:How did you make that download counter?
php
Beach
Enthusiast
Enthusiast
Posts: 677
Joined: Mon Feb 02, 2004 3:16 am
Location: Beyond the sun...

Post by Beach »

Sec is right, I made it with PHP and the GD lib. I also integrated this feature into the PureStorage site - so when you upload a file and then click the "link" icon next to the file's listing, you will get the correct syntax to paste into this board for the download counter.
-Beach
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

anyone needs a vectorized icon? I got it somewhere here.. its the same thing but in vectors, I dont remember why I made it but if someone needs it.. just tell me!
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Post by Droopy »

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()    
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

Beach wrote:Sec is right, I made it with PHP and the GD lib. I also integrated this feature into the PureStorage site - so when you upload a file and then click the "link" icon next to the file's listing, you will get the correct syntax to paste into this board for the download counter.
Great!
Beach
Enthusiast
Enthusiast
Posts: 677
Joined: Mon Feb 02, 2004 3:16 am
Location: Beyond the sun...

Post by Beach »

Droopy wrote:This code to show icon ...
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:

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
User
Posts: 82
Joined: Tue May 03, 2005 2:51 am
Location: Wheeling, Illinois, USA
Contact:

Post by Sub-Routine »

I would like to see the PB icon as default for programs I compile.

Rand
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

Yeah a great idea and its very simple for fred to add :D 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 :cry:

Cheers
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
Dare2
Moderator
Moderator
Posts: 3321
Joined: Sat Dec 27, 2003 3:55 am
Location: Great Southern Land

Post by Dare2 »

dagcrack wrote:PS: Will GPI still work on jaPBe ??? I want to know
Me too.
@}--`--,-- A rose by any other name ..
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

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
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
josku_x
Addict
Addict
Posts: 997
Joined: Sat Sep 24, 2005 2:08 pm

Post by josku_x »

hey! I like your XP icon, I'll use it for my PB shortcut ;)
Post Reply