PureBasic 4.60 Final !

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
kenmo
Addict
Addict
Posts: 2033
Joined: Tue Dec 23, 2003 3:54 am

Re: PureBasic 4.60 Final !

Post by kenmo »

Let's just talk about the fantastic CanvasGadget and new List features again :D Oh yes, and some new 3D features to check out 8)
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 4.60 Final !

Post by Fred »

No offense taken, i know my english isn't perfect. I meant 'sometime' indeed. Now go back to the kudos we love that ;)
User avatar
oreopa
Enthusiast
Enthusiast
Posts: 283
Joined: Sat Jun 24, 2006 3:29 am
Location: Edinburgh, Scotland.

Re: PureBasic 4.60 Final !

Post by oreopa »

Hehe. I also didn't mean any offence to anyone when I pointed out it was really a word. Let's all just have a big group hug :)

PB rules, and even if it was only available in Swahili I'd more than likely still use it. :D
Proud supporter of PB! * Musician * C64/6502 Freak
User avatar
skywalk
Addict
Addict
Posts: 4211
Joined: Wed Dec 23, 2009 10:14 pm
Location: Boston, MA

Re: PureBasic 4.60 Final !

Post by skywalk »

Fred wrote:No offense taken, i know my english isn't perfect. I meant 'sometime' indeed. Now go back to the kudos we love that ;)
It's certainly good enough if you are teaching me new english words. :wink:

somewhere somewhen
never down
with a friend

Can't wait to see what pushes PB to version 5.0 :?:
The nice thing about standards is there are so many to choose from. ~ Andrew Tanenbaum
IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: PureBasic 4.60 Final !

Post by IdeasVacuum »

...there is only one language of interest - Pure Basic!
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
User avatar
Kuron
Addict
Addict
Posts: 1626
Joined: Sat Oct 17, 2009 10:51 pm
Location: Pacific Northwest

Re: PureBasic 4.60 Final !

Post by Kuron »

Fred wrote:Now go back to the kudos we love that ;)
I would send you a box, but I am not sure if food items would make it through customs. :|
Best wishes to the PB community. Thank you for the memories. ♥️
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8451
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Re: PureBasic 4.60 Final !

Post by netmaestro »

This thread reminds me of that great old song, "Could you ever love me again" by David Weeks from Toronto, my home town:
Could you ever love me again
If I let you down,
Disappointed you?
Could you ever love me again?
If I ceased to do little things for you,
Could you ever love me again?
Somewhere, somehow, somewhen,
If I let you down, girl,
Could you ever love me again?
Bet you've heard it: http://www.youtube.com/watch?v=CskDRp7z-vY

The word is archaic, so it's fitting to look at an archaic picture of a couple you know well:

Image

Yep, the leader of the free world and Bill. Reminds me of the old joke where Bill and Hillary are in the presidential limo and the driver stops for gas. Looking out the window at the greasy fellow cleaning the windshield, Bill says: I bet you're glad you married the man who would be president instead of that guy. Hillary replies: Dear, If I'd married him he'd be sitting beside me in this limo and you'd be pumping the gas!

Seriously, would you sign a global arms treaty with that guy? How about the happy little muffin-baker beside him as Secretary of State for the most powerful nation in the world?

Beam me up, Scotty! ..Now would be a good time!
BERESHEIT
Wladek
User
User
Posts: 98
Joined: Mon Feb 23, 2009 4:01 pm
Location: Poland
Contact:

Re: PureBasic 4.60 Final !

Post by Wladek »

Future:
ragdoll models

Bugs:
CreateWater() not work - do error (MessageBox "Send error to Microsoft" )
CreateTerrain() do nothink
WorldDebug.pb -> Error when push F3 key
SpecialEffect - make example
You plan fix it ?
If yes, when ?
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

Re: PureBasic 4.60 Final !

Post by c4s »

@Wladek
Posting bug reports in the bug forum will dramatically increase the chance that they will get fixed. The (Windows) bug forum is over here: http://www.purebasic.fr/english/viewforum.php?f=4
...and feature requests go here: http://www.purebasic.fr/english/viewforum.php?f=3

By the way, your bugs have already been reported: http://www.purebasic.fr/english/viewtop ... 87#p365887
They should be fixed when the topic gets a "[done]". :wink:
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Seldon
Enthusiast
Enthusiast
Posts: 405
Joined: Fri Aug 22, 2003 7:12 am
Location: Italia

Re: PureBasic 4.60 Final !

Post by Seldon »

Thanks for the new release ! Again... it seems the ComboBox Windows control class is changed again ! But why so ? It was decided to use the old class when you don't need images...
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

Re: PureBasic 4.60 Final !

Post by c4s »

Seldon wrote:it seems the ComboBox Windows control class is changed again ! But why so ? It was decided to use the old class when you don't need images...
I think support for icons in the ComboBoxGadget() came with 4.50. You have to explicitly use #PB_ComboBox_Image to enable this feature so I don't see any problem here.
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Seldon
Enthusiast
Enthusiast
Posts: 405
Joined: Fri Aug 22, 2003 7:12 am
Location: Italia

Re: PureBasic 4.60 Final !

Post by Seldon »

Exactly... if you don't use #PB_ComboBox_Image flag, ComboBox should be used. OK, I've checked with GetClassName() API... :) Now, I was wrong:

'Combobox' is still used if you don't use #PB_ComboBox_Image, while 'ComboboxEx32' when you need an image.

I don't understand why it broke compatibility with custom event types flags then :

Code: Select all

#PB_EventType_ComboBox_SelChange=1
#PB_EventType_ComboBox_DblClk=2
#PB_EventType_ComboBox_SetFocus=3
#PB_EventType_ComboBox_LostFocus=4
#PB_EventType_ComboBox_EditChange=5
#PB_EventType_ComboBox_EditUpdate=6
#PB_EventType_ComboBox_DropDown=7
#PB_EventType_ComboBox_CloseUp=8
#PB_EventType_ComboBox_SelEndOK=9
#PB_EventType_ComboBox_SelEndCancel=10
#PB_EventType_ComboBox_ERRSPACE=-1
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

Re: PureBasic 4.60 Final !

Post by c4s »

With version 4.60 the Change, Focus and LostFocus event types are officially supported.
I think some time ago I've read freak saying something about the other events or using them in general... can't find it though. His conclusion was something like messing around with PureBasic and API at the same time can result in uncertain behavior. So generally you are on your own if you do so and if something breaks it's your fault. :wink:
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Seldon
Enthusiast
Enthusiast
Posts: 405
Joined: Fri Aug 22, 2003 7:12 am
Location: Italia

Re: PureBasic 4.60 Final !

Post by Seldon »

Yes, I think you need a callback to catch the other events. I was only uncertain which class it used... it's all like before, so.. no problem !
Post Reply