PureBasic 4.60 Final !
Re: PureBasic 4.60 Final !
Let's just talk about the fantastic CanvasGadget and new List features again
Oh yes, and some new 3D features to check out 
Re: PureBasic 4.60 Final !
No offense taken, i know my english isn't perfect. I meant 'sometime' indeed. Now go back to the kudos we love that 
Re: PureBasic 4.60 Final !
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.
PB rules, and even if it was only available in Swahili I'd more than likely still use it.
Proud supporter of PB! * Musician * C64/6502 Freak
Re: PureBasic 4.60 Final !
It's certainly good enough if you are teaching me new english words.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
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

- Posts: 6426
- Joined: Fri Oct 23, 2009 2:33 am
- Location: Wales, UK
- Contact:
Re: PureBasic 4.60 Final !
...there is only one language of interest - Pure Basic!
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
If it sounds simple, you have not grasped the complexity.
Re: PureBasic 4.60 Final !
I would send you a box, but I am not sure if food items would make it through customs.Fred wrote:Now go back to the kudos we love that
Best wishes to the PB community. Thank you for the memories. 
- netmaestro
- PureBasic Bullfrog

- Posts: 8452
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Re: PureBasic 4.60 Final !
This thread reminds me of that great old song, "Could you ever love me again" by David Weeks from Toronto, my home town:
The word is archaic, so it's fitting to look at an archaic picture of a couple you know well:

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!
Bet you've heard it: http://www.youtube.com/watch?v=CskDRp7z-vYCould 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?
The word is archaic, so it's fitting to look at an archaic picture of a couple you know well:

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
Re: PureBasic 4.60 Final !
You plan fix it ?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
If yes, when ?
Re: PureBasic 4.60 Final !
@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]".
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]".
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Re: PureBasic 4.60 Final !
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...
Re: PureBasic 4.60 Final !
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.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...
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Re: PureBasic 4.60 Final !
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 :
'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
Re: PureBasic 4.60 Final !
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.
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.
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Re: PureBasic 4.60 Final !
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 !



