Page 14 of 35

Posted: Tue Jan 31, 2006 12:25 pm
by DoubleDutch
What 3 ?
I only see one wingding.ttf [WinNT4 / Win98SE]
I guess that answers the question! ;)

I get wingding.ttf, wingdng2.ttf and wingdng3.ttf on WinXP SP2

-Anthony

Posted: Tue Jan 31, 2006 12:28 pm
by gnozal
DoubleDutch wrote:I get wingding.ttf, wingdng2.ttf and wingdng3.ttf on WinXP SP2
I guess the only 'special' fonts present in all windows versions are wingding.ttf and symbol.ttf

Posted: Tue Jan 31, 2006 12:40 pm
by DoubleDutch
Forgot about symbol, thanks.

I'm going to use wingding 78 in my registration system if people are using a cracked version of my programs!

Posted: Wed Feb 08, 2006 4:56 am
by rsts
Looks like this lib needs some "converting" for pb4?

Usually, you're way ahead of the rest of us :)

cheers,

Posted: Wed Feb 08, 2006 9:01 am
by gnozal
Of course, all my libs will be converted to PB4.00 (I am already converting them).
I am just waiting for PB4.00 final and the new Tailbite version. Maybe I release some betas.

Posted: Wed Feb 08, 2006 9:40 am
by Flype
The GadgetType function will make your life easier, no ?

Code: Select all

For i=0 To #gMax-1
  If IsGadget(i)
    Select GadgetType(i)
      Case #PB_GadgetType_Button:        
      Case #PB_GadgetType_Calendar:      
      Case #PB_GadgetType_CheckBox:      
      Case #PB_GadgetType_ComboBox:      
      Case #PB_GadgetType_Container :    
      Case #PB_GadgetType_Date:          
      Case #PB_GadgetType_Editor:        
      Case #PB_GadgetType_ExplorerList:  
      Case #PB_GadgetType_ExplorerTree:  
      Case #PB_GadgetType_ExplorerCombo: 
      Case #PB_GadgetType_Frame3D:       
      Case #PB_GadgetType_HyperLink:     
      Case #PB_GadgetType_Image:         
      Case #PB_GadgetType_IPAddress:     
      Case #PB_GadgetType_ListIcon:      
      Case #PB_GadgetType_ListView:      
      Case #PB_GadgetType_MDI:           
      Case #PB_GadgetType_Option:        
      Case #PB_GadgetType_Panel:         
      Case #PB_GadgetType_ProgressBar:   
      Case #PB_GadgetType_ScrollArea:    
      Case #PB_GadgetType_ScrollBar:     
      Case #PB_GadgetType_Spin:          
      Case #PB_GadgetType_Splitter:      
      Case #PB_GadgetType_String:        
      Case #PB_GadgetType_Text:          
      Case #PB_GadgetType_TrackBar:      
      Case #PB_GadgetType_Tree:          
      Case #PB_GadgetType_Web:           
      Default
    EndSelect
  EndIf
Next
PureCOLOR should be still alive for gadgets that are not currently supporting colors in PB4.
For example, IMHO, you can let PB4 to color the StringGadget but color by yourself the ButtonGadget...

Posted: Wed Feb 08, 2006 10:02 am
by gnozal
Flype wrote:The GadgetType function will make your life easier, no ?
I was already using the window class, I am not sure I will change this. But yes, it would have been much easier !
Flype wrote:PureCOLOR should be still alive for gadgets that are not currently supporting colors in PB4.
PureCOLOR will rise again :wink:

Posted: Mon Apr 10, 2006 5:28 am
by Shannara
Im glad PureColor supports Checkbox! The problem is the PureColor library for PB4 takes me to a german page but no download?

http://people.freenet.de/gnozal/PureCOLOR%21.zip <- I found this url on your page under the Purebasic 4.00 Libraries section

I grabbed the above url from your website. However, the url in your first post found @ http://people.freenet.de/gnozal/PureCOLOR.zip works perfectly :)

However, when trying to use that library in that link in PB4, I get a library missing error: Menu Extension.

Posted: Mon Apr 10, 2006 7:59 am
by gnozal
Shannara wrote:Im glad PureColor supports Checkbox! The problem is the PureColor library for PB4 takes me to a german page but no download?

http://people.freenet.de/gnozal/PureCOLOR%21.zip <- I found this url on your page under the Purebasic 4.00 Libraries section

I grabbed the above url from your website. However, the url in your first post found @ http://people.freenet.de/gnozal/PureCOLOR.zip works perfectly :)

However, when trying to use that library in that link in PB4, I get a library missing error: Menu Extension.
I am waiting for PB4 final and Tailbite 4 final to update all my libs for PB4 (only broken links for the moment).

Posted: Mon Apr 10, 2006 7:00 pm
by Shannara
Ah, sounds cool. I to am waiting for Tailbite final and pb 4 final.

Posted: Tue Apr 18, 2006 5:16 pm
by gnozal
Update (PB 3.94)

Changes :
- new function PureCOLOR_EventMenuID() (see help)

Posted: Fri Jun 23, 2006 10:05 am
by Pantcho!!
Hi,
Any chance on changing the ListIconGadget Grid Color?, it is always grey.

thanks.

Posted: Fri Jun 23, 2006 2:30 pm
by gnozal
Pantcho!! wrote:Hi,
Any chance on changing the ListIconGadget Grid Color?, it is always grey.
thanks.
Hmm, I don't know if this is possible without doing owner draw ?!

Posted: Fri Jun 23, 2006 3:49 pm
by Pantcho!!
what is an owner draw? :?

Posted: Sat Jun 24, 2006 8:40 am
by gnozal
Pantcho!! wrote:what is an owner draw? :?
I mean drawing all the stuff by yourself ... instead of only telling windows what color it should use.